Beispiel #1
0
        public static OverlayServer joinExisting(IPAddress IP, String strOverlayType, Guid overlayInstanceGuid)
        {
            OverlayController overlayController = getController(strOverlayType);

            return(overlayController.joinExisting(IP, overlayInstanceGuid));
        }
Beispiel #2
0
        //join an existing overlay to which this node is not yet a part of
        public static OverlayServer joinExisting(IPAddress IP, Guid overlayGuid, Guid overlayInstanceGuid)
        {
            OverlayController overlayController = getController(overlayGuid);

            return(overlayController.joinExisting(IP, overlayInstanceGuid));
        }