コード例 #1
0
        private static CoordinationEntryPath GetPrefixPath(ReadOnlyMemory <char> prefix, bool normalize = true)
        {
            if (normalize)
            {
                prefix = NormalizePrefix(prefix);
            }

            return(_rootPrefixesPath.GetChildPath(prefix));
        }
コード例 #2
0
ファイル: RouteManager.cs プロジェクト: developeramarish/AI4E
 private static CoordinationEntryPath GetReversePath(string session, EndPointAddress endPoint)
 {
     return(_reverseRoutesRootPath.GetChildPath(session, endPoint.ToString()));
 }
コード例 #3
0
ファイル: RouteManager.cs プロジェクト: developeramarish/AI4E
 private static CoordinationEntryPath GetPath(Route route)
 {
     return(_routesRootPath.GetChildPath(route.ToString()));
 }
コード例 #4
0
 private static CoordinationEntryPath GetRunningModulePath(ModuleIdentifier module)
 {
     return(_rootRunningPath.GetChildPath(module.Name));
 }
コード例 #5
0
 private static CoordinationEntryPath GetPath(EndPointAddress endPoint)
 {
     return(_mapsRootPath.GetChildPath(endPoint.ToString()));
 }