Lines Matching refs:TransactionId
34 transactions: HashMap<TransactionId, AgentTransaction>,
43 Callback(TransactionId),
45 Remove(TransactionId),
51 EventType::Callback(TransactionId::default()) in default()
75 id: TransactionId,
84 pub struct TransactionId(pub [u8; TRANSACTION_ID_SIZE]); struct
86 impl TransactionId { impl
90 let mut b = TransactionId([0u8; TRANSACTION_ID_SIZE]); in new()
96 impl Setter for TransactionId { implementation
110 Start(TransactionId, Instant),
111 Stop(TransactionId),
127 pub fn stop_with_error(&mut self, id: TransactionId, error: Error) -> Result<()> { in stop_with_error() argument
193 pub fn start(&mut self, id: TransactionId, deadline: Instant) -> Result<()> { in start() argument
209 pub fn stop(&mut self, id: TransactionId) -> Result<()> { in stop()
226 let mut to_remove: Vec<TransactionId> = Vec::with_capacity(AGENT_COLLECT_CAP); in collect()