IInteractionRegistration Public interface
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IInteractionRegistration[[IInteractionRegistration]]
class SharedLibraryCore.Interfaces.IInteractionRegistration interfaceStyle;
end
Loading
| Returns |
Name |
Task<IEnumerable<IInteractionData>> |
GetInteractions(string interactionPrefix, Nullable<int> clientId, Nullable<Game> game, CancellationToken token) |
Task<string> |
ProcessInteraction(string interactionId, int originId, Nullable<int> targetId, Nullable<Game> game, IDictionary<string, string> meta, CancellationToken token) |
void |
RegisterInteraction(string interactionName, Func<Nullable<int>, Nullable<Game>, CancellationToken, Task<IInteractionData>> interactionRegistration) |
void |
RegisterScriptInteraction(string interactionName, string source, Delegate interactionRegistration) |
void |
UnregisterInteraction(string interactionName) |
RegisterScriptInteraction
Source code
public void RegisterScriptInteraction(string interactionName, string source, Delegate interactionRegistration)
| Type |
Name |
Description |
string |
interactionName |
|
string |
source |
|
Delegate |
interactionRegistration |
|
Source code
public void RegisterInteraction(string interactionName, Func<Nullable<int>, Nullable<Game>, CancellationToken, Task<IInteractionData>> interactionRegistration)
| Type |
Name |
Description |
string |
interactionName |
|
Func<Nullable<int>, Nullable<Game>, CancellationToken, Task<IInteractionData>> |
interactionRegistration |
|
Source code
public void UnregisterInteraction(string interactionName)
| Type |
Name |
Description |
string |
interactionName |
|
Source code
public Task<IEnumerable<IInteractionData>> GetInteractions(string interactionPrefix, Nullable<int> clientId, Nullable<Game> game, CancellationToken token)
| Type |
Name |
Description |
string |
interactionPrefix |
|
Nullable<int> |
clientId |
|
Nullable<Game> |
game |
|
CancellationToken |
token |
|
Source code
public Task<string> ProcessInteraction(string interactionId, int originId, Nullable<int> targetId, Nullable<Game> game, IDictionary<string, string> meta, CancellationToken token)
| Type |
Name |
Description |
string |
interactionId |
|
int |
originId |
|
Nullable<int> |
targetId |
|
Nullable<Game> |
game |
|
IDictionary<string, string> |
meta |
|
CancellationToken |
token |
|
Generated with ModularDoc