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

Outbound Gateway actor. Counterpart to IbGateway. Receives messages from actors on current node bound for remote nodes. Sends them over the network to IbGateway. More...

#include "ObGateway.h"
Include dependency graph for ObGateway.cc:

Go to the source code of this file.

Functions

void * obGateway (void *identity)
 launch ObGateway actor More...
 

Detailed Description

Outbound Gateway actor. Counterpart to IbGateway. Receives messages from actors on current node bound for remote nodes. Sends them over the network to IbGateway.

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:35:13 2013

Definition in file ObGateway.cc.

Function Documentation

void* obGateway ( void *  identity)

launch ObGateway actor

Parameters
identityhow to identify actor instance
Returns

Definition at line 274 of file ObGateway.cc.

Referenced by TopologyMgr::TopologyMgr().

275 {
276  new ObGateway((Topology::partitionAddress *)identity);
277  while (1)
278  {
279  sleep(150000);
280  }
281  return NULL;
282 }

Here is the caller graph for this function: