Zth (libzth)
Loading...
Searching...
No Matches

Functions

void * zth::zmq::zmq_context ()
 Returns the (only) 0MQ context, used by all fibers.
 
void * zth::zmq::zmq_socket (int type)
 Fiber-aware wrapper for 0MQ's zmq_socket().
 
int zth::zmq::zmq_msg_send (zmq_msg_t *msg, void *socket, int flags)
 Fiber-aware wrapper for 0MQ's zmq_msg_send().
 
int zth::zmq::zmq_msg_recv (zmq_msg_t *msg, void *socket, int flags)
 Fiber-aware wrapper for 0MQ's zmq_msg_recv().
 
int zth::zmq::zmq_send (void *socket, void const *buf, size_t len, int flags)
 Fiber-aware wrapper for 0MQ's zmq_send().
 
int zth::zmq::zmq_recv (void *socket, void *buf, size_t len, int flags)
 Fiber-aware wrapper for 0MQ's zmq_recv().
 
int zth::zmq::zmq_send_const (void *socket, void const *buf, size_t len, int flags)
 Fiber-aware wrapper for 0MQ's zmq_send_const().
 

Detailed Description

Function Documentation

◆ zmq_context()

void * zth::zmq::zmq_context ( )

Returns the (only) 0MQ context, used by all fibers.

Definition at line 49 of file zmq.cpp.

◆ zmq_msg_recv()

int zth::zmq::zmq_msg_recv ( zmq_msg_t *  msg,
void *  socket,
int  flags 
)

Fiber-aware wrapper for 0MQ's zmq_msg_recv().

Definition at line 92 of file zmq.cpp.

◆ zmq_msg_send()

int zth::zmq::zmq_msg_send ( zmq_msg_t *  msg,
void *  socket,
int  flags 
)

Fiber-aware wrapper for 0MQ's zmq_msg_send().

Definition at line 70 of file zmq.cpp.

◆ zmq_recv()

int zth::zmq::zmq_recv ( void *  socket,
void *  buf,
size_t  len,
int  flags 
)

Fiber-aware wrapper for 0MQ's zmq_recv().

Definition at line 136 of file zmq.cpp.

◆ zmq_send()

int zth::zmq::zmq_send ( void *  socket,
void const *  buf,
size_t  len,
int  flags 
)

Fiber-aware wrapper for 0MQ's zmq_send().

Definition at line 114 of file zmq.cpp.

◆ zmq_send_const()

int zth::zmq::zmq_send_const ( void *  socket,
void const *  buf,
size_t  len,
int  flags 
)

Fiber-aware wrapper for 0MQ's zmq_send_const().

Definition at line 158 of file zmq.cpp.

◆ zmq_socket()

void * zth::zmq::zmq_socket ( int  type)

Fiber-aware wrapper for 0MQ's zmq_socket().

The context is implicit, as all fibers run in the same thread and share the context.

Definition at line 61 of file zmq.cpp.