コード例 #1
0
ファイル: TashjikServer.cs プロジェクト: ratulmukh/tashjik
        public static OverlayServer joinExisting(IPAddress IP, String strOverlayType, Guid overlayInstanceGuid)
        {
            OverlayController overlayController = getController(strOverlayType);

            return(overlayController.joinExisting(IP, overlayInstanceGuid));
        }
コード例 #2
0
ファイル: TashjikServer.cs プロジェクト: ratulmukh/tashjik
        //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));
        }