mirror of
https://github.com/esiur/esiur-dotnet.git
synced 2025-06-27 05:23:13 +00:00
Cleaning
This commit is contained in:
@ -66,9 +66,11 @@ public class AsyncReply
|
||||
public bool Ready
|
||||
{
|
||||
get { return resultReady; }
|
||||
|
||||
}
|
||||
|
||||
public bool Failed => exception != null;
|
||||
|
||||
public Exception Exception => exception;
|
||||
|
||||
public object Wait()
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Esiur.Misc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
@ -27,7 +28,7 @@ public class AsyncReplyBuilder
|
||||
|
||||
public void SetStateMachine(IAsyncStateMachine stateMachine)
|
||||
{
|
||||
Console.WriteLine("SetStateMachine");
|
||||
Global.Log("AsyncReplyBuilder", LogType.Debug, "SetStateMachine");
|
||||
}
|
||||
|
||||
public void SetException(Exception exception)
|
||||
|
@ -1,4 +1,5 @@
|
||||
using System;
|
||||
using Esiur.Misc;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
@ -27,7 +28,7 @@ public class AsyncReplyBuilder<T>
|
||||
|
||||
public void SetStateMachine(IAsyncStateMachine stateMachine)
|
||||
{
|
||||
Console.WriteLine("SetStateMachine");
|
||||
Global.Log("AsyncReplyBuilderGeneric", LogType.Debug, "SetStateMachine");
|
||||
}
|
||||
|
||||
public void SetException(Exception exception)
|
||||
|
Reference in New Issue
Block a user