InfiniSQL  v0.1.2-alpha
Massive Scale Transaction Processing
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
IbGateway.h File Reference

Inbound Gateway actor. Counterpart to ObGateway. Receives messages over the network from remote senders and distributes them to their destination actors on the current node. More...

#include "gch.h"
Include dependency graph for IbGateway.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  IbGateway
 Inbound Gateway Actor. More...
 

Functions

void * ibGateway (void *identity)
 launch IbGateway actor More...
 

Detailed Description

Inbound Gateway actor. Counterpart to ObGateway. Receives messages over the network from remote senders and distributes them to their destination actors on the current node.

Author
Mark Travis mtrav.nosp@m.is15.nosp@m.432+s.nosp@m.rc@g.nosp@m.mail..nosp@m.com
Date
Tue Dec 17 13:20:37 2013

Definition in file IbGateway.h.

Function Documentation

void* ibGateway ( void *  identity)

launch IbGateway actor

Parameters
identityhow to identify actor instance
Returns

Definition at line 420 of file IbGateway.cc.

421 {
422  new IbGateway((Topology::partitionAddress *)identity);
423  while (1)
424  {
425  sleep(500000);
426  }
427  return NULL;
428 }