InfiniSQL  v0.1.2-alpha
Massive Scale Transaction Processing
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ObGateway.h 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 "gch.h"
Include dependency graph for ObGateway.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ObGateway
 execute Outbound Gateway actor More...
 

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:36:03 2013

Definition in file ObGateway.h.

Function Documentation

void* obGateway ( void *  identity)

launch ObGateway actor

Parameters
identityhow to identify actor instance
Returns

Definition at line 274 of file ObGateway.cc.

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