本文整理汇总了C#中Agent.Start方法的典型用法代码示例。如果您正苦于以下问题:C# Agent.Start方法的具体用法?C# Agent.Start怎么用?C# Agent.Start使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Agent
的用法示例。
在下文中一共展示了Agent.Start方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Start
public void Start(Action<TcpClient, byte[]> onData, Action<TcpClient> onDisconnect)
{
TcpListener listener = new TcpListener(port);
listener.Start();
running = true;
AutoResetEvent are = new AutoResetEvent(false);
agent = new Agent<Action>(
() => { },
() => { },
nextaction =>
{
nextaction();
if (running)
{
return NextAction.WaitForNextMessage;
}
are.Set();
return NextAction.Finish;
});
agent.Start();
agent.SendMessage(() => { StartAccepting(listener, onData, onDisconnect); });
are.WaitOne();
listener.Stop();
}
示例2: Main
static void Main(string[] args)
{
SetTitle("Starting...");
Agent agent = new Agent();
agent.Start();
SetTitle("Started");
System.Console.ReadLine();
agent.Stop();
SetTitle("Stopped");
}
示例3: Setup
public void Setup()
{
_agent = new Agent();
_agent.Start();
}
示例4: Agent_opens_tcp_connection_on_port_7894
public void Agent_opens_tcp_connection_on_port_7894()
{
var agent = new Agent();
agent.Start();
Assert_Port_Open("127.0.0.1", PORT);
}
示例5: Agent_closes_tcp_connection
public void Agent_closes_tcp_connection()
{
var agent = new Agent();
agent.Start();
agent.Stop();
Assert_Port_Closed("127.0.0.1", PORT);
}