Beispiel #1
0
 public OverlayController(OverlayServerFactory overlayServerFactory, Guid g, String strOverlayType)
 {
     this.overlayServerFactory = overlayServerFactory ;
     guid = g;
     //Original plan was to have OverlayController
     //to receive all messages from TransportLayerComm
     //for the sake of decreasing contention there
     //but I am not sure useful or important tht would be
     //Experimental validation would be required
     //Would help only at very high workloads
     //Moreover it should offset the extra level of indirectio
     //For now, let ever overlayInstance communicate directly with
     //TransportLayerCommunicator
     //		Tier0.TransportLayerCommunicator.getRefTransportLayerCommunicator().register(guid, this);
     this.strOverlayType = strOverlayType;
 }
Beispiel #2
0
 public OverlayController(OverlayServerFactory overlayServerFactory, Guid g, String strOverlayType)
 {
     this.overlayServerFactory = overlayServerFactory;
     guid = g;
     //Original plan was to have OverlayController
     //to receive all messages from TransportLayerComm
     //for the sake of decreasing contention there
     //but I am not sure useful or important tht would be
     //Experimental validation would be required
     //Would help only at very high workloads
     //Moreover it should offset the extra level of indirectio
     //For now, let ever overlayInstance communicate directly with
     //TransportLayerCommunicator
     //		Tier0.TransportLayerCommunicator.getRefTransportLayerCommunicator().register(guid, this);
     this.strOverlayType = strOverlayType;
 }