Beispiel #1
0
void thorium_actor_send_reply_then(struct thorium_actor *self,
                struct thorium_message *message, thorium_actor_receive_fn_t handler)
{
    int source = thorium_actor_source(self);

    thorium_actor_send_then(self, source, message, handler);
}
Beispiel #2
0
void thorium_actor_send_reply_int64_t(struct thorium_actor *actor, int tag, int64_t value)
{
    thorium_actor_send_int64_t(actor, thorium_actor_source(actor), tag, value);
}
Beispiel #3
0
void thorium_actor_send_reply_empty(struct thorium_actor *actor, int tag)
{
    thorium_actor_send_empty(actor, thorium_actor_source(actor), tag);
}
Beispiel #4
0
void thorium_actor_send_reply_vector(struct thorium_actor *actor, int tag, struct core_vector *vector)
{
    thorium_actor_send_vector(actor, thorium_actor_source(actor), tag, vector);
}
Beispiel #5
0
void thorium_actor_send_reply_buffer(struct thorium_actor *actor, int action, int count, void *buffer)
{
    thorium_actor_send_buffer(actor, thorium_actor_source(actor), action, count, buffer);
}
Beispiel #6
0
void thorium_actor_send_reply(struct thorium_actor *actor, struct thorium_message *message)
{
    thorium_actor_send(actor, thorium_actor_source(actor), message);
}