Beispiel #1
0
///
//  Reset a ticket timer, which moves it to the end of the ticket list and
//  resets its execution time. This is a very fast operation.             
void QmlZloop::ticketReset (void *handle) {
    zloop_ticket_reset (self, handle);
};
JNIEXPORT void JNICALL
Java_org_zeromq_czmq_Zloop__1_1ticketReset (JNIEnv *env, jclass c, jlong self, jlong handle)
{
    zloop_ticket_reset ((zloop_t *) (intptr_t) self, (void *) (intptr_t) handle);
}