Esempio n. 1
0
///
//  Set routing ID on frame. This is used if/when the frame is sent to a
//  ZMQ_SERVER socket.                                                  
void QmlZframe::setRoutingId (uint32_t routingId) {
    zframe_set_routing_id (self, routingId);
};
JNIEXPORT void JNICALL
Java_org_zeromq_czmq_Zframe__1_1setRoutingId (JNIEnv *env, jclass c, jlong self, jint routing_id)
{
    zframe_set_routing_id ((zframe_t *) (intptr_t) self, (uint32_t) routing_id);
}
Esempio n. 3
0
///
//  Set frame routing id. Only relevant when sending to server socket.
void QZframe::setRoutingId (size_t routingId)
{
    zframe_set_routing_id (self, routingId);
    
}
Esempio n. 4
0
///
//  Set routing ID on frame. This is used if/when the frame is sent to a
//  ZMQ_SERVER socket.                                                  
void QZframe::setRoutingId (quint32 routingId)
{
    zframe_set_routing_id (self, (uint32_t) routingId);
    
}