MCPcopy Create free account
hub / github.com/atomicdotdev/atomic / current_turn_duration_ms

Method current_turn_duration_ms

atomic-agent/src/turn/session.rs:336–341  ·  view source on GitHub ↗

Returns the duration of the current turn in milliseconds, if a turn is active.

(&self)

Source from the content-addressed store, hash-verified

334
335 /// Returns the duration of the current turn in milliseconds, if a turn is active.
336 pub fn current_turn_duration_ms(&self) -> Option<u64> {
337 self.current_turn_started_at.map(|started| {
338 let duration = Utc::now().signed_duration_since(started);
339 duration.num_milliseconds().max(0) as u64
340 })
341 }
342
343 /// Returns `true` if the session has ended.
344 pub fn is_ended(&self) -> bool {

Callers 2

handle_turn_endMethod · 0.80

Calls

no outgoing calls

Tested by 1