Added & modified several message types.
This commit is contained in:
9
Requests/Callbacks/ICallbackManager.cs
Normal file
9
Requests/Callbacks/ICallbackManager.cs
Normal file
@ -0,0 +1,9 @@
|
||||
namespace HermesSocketLibrary.Requests.Callbacks
|
||||
{
|
||||
public interface ICallbackManager<A> where A : class
|
||||
{
|
||||
string GenerateKeyForCallback(A callback);
|
||||
A? Get(string key);
|
||||
A? Take(string key);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user