public void LoadNode(string Key, [SelectionValues("FubuTransportRegistries")] string Registry, string ReplyUri) { MessageHistory.WaitForWorkToFinish(() => { var node = new RunningNode(Registry, ReplyUri.ToUri()); node.Start(); _nodes[Key] = node; Context.Trace(new CodeTag(Key, node.Contents)); }); }
public void ForNode(string Key) { _node = _nodes[Key]; }