Create new agent reference
(id: u64, sender: MailboxSender<T>)
| 34 | impl<T: Send> AgentRef<T> { |
| 35 | /// Create new agent reference |
| 36 | pub fn new(id: u64, sender: MailboxSender<T>) -> Self { |
| 37 | Self { id, sender } |
| 38 | } |
| 39 | |
| 40 | /// Send message to agent |
| 41 | #[inline] |
nothing calls this directly
no outgoing calls
no test coverage detected