InfiniSQL  v0.1.2-alpha
Massive Scale Transaction Processing
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
IbGateway.cc 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 "IbGateway.h"
Include dependency graph for IbGateway.cc:

Go to the source code of this file.

Macros

#define EPOLLEVENTS   1024
 

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:18:43 2013

Definition in file IbGateway.cc.

Macro Definition Documentation

#define EPOLLEVENTS   1024

Definition at line 33 of file IbGateway.cc.

Function Documentation

void* ibGateway ( void *  identity)

launch IbGateway actor

Parameters
identityhow to identify actor instance
Returns

Definition at line 420 of file IbGateway.cc.

References IbGateway::IbGateway().

Referenced by TopologyMgr::TopologyMgr().

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

Here is the call graph for this function:

Here is the caller graph for this function: