Struct nng::Context [−][src]
pub struct Context { /* fields omitted */ }
A socket context.
The context allows for independent and concurrent use of stateful operations on a single socket. Using contexts is an excellent way to write simpler concurrent applications, while retaining the benefits of the protocol-specific advanced processing.
Note that not all protocols allow for the creation of contexts.
Examples
See the documentation of the Aio
type for examples on how to use socket
contexts.
Implementations
impl Context
[src]
impl Context
[src]pub fn new(socket: &Socket) -> Result<Context>
[src]
Creates a new socket context.
Errors
NotSupported
: The protocol does not support separate contexts or the socket was opened in raw mode.OutOfMemory
: Insufficient memory is available.
pub fn send<M: Into<Message>>(
&self,
aio: &Aio,
msg: M
) -> Result<(), (Message, Error)>
[src]
&self,
aio: &Aio,
msg: M
) -> Result<(), (Message, Error)>
Start a send operation on the given Aio
and return immediately.
Errors
IncorrectState
: TheAio
already has a running operation.
pub fn recv(&self, aio: &Aio) -> Result<()>
[src]
Start a receive operation using the given Aio
and return immediately.
Errors
IncorrectState
: TheAio
already has a running operation.
pub fn close(&self)
[src]
Closes the context.
Messages that have been submitted for sending may be flushed or delivered, depending on the underlying transport and the linger option. Further attempts to use the context (with this or any other handle) will result in an error. Threads waiting for operations on the context when this call is executed may also return with an error.
Closing the owning socket also closes this context. Additionally, the context is closed once all handles have been dropped.
Trait Implementations
impl GetOpt<ResendTime> for Context
[src]
impl GetOpt<ResendTime> for Context
[src]impl GetOpt<SurveyTime> for Context
[src]
impl GetOpt<SurveyTime> for Context
[src]impl PartialOrd<Context> for Context
[src]
impl PartialOrd<Context> for Context
[src]impl SetOpt<ResendTime> for Context
[src]
impl SetOpt<ResendTime> for Context
[src]impl SetOpt<SurveyTime> for Context
[src]
impl SetOpt<SurveyTime> for Context
[src]Auto Trait Implementations
impl RefUnwindSafe for Context
impl RefUnwindSafe for Context
impl UnwindSafe for Context
impl UnwindSafe for Context