Interface IServiceCallsRepository
Repository for currently executing service calls
Assembly: SoCore.dll
Syntax
public interface IServiceCallsRepository
Properties
ActiveServiceCalls
Gets all currenty executing service calls.
Declaration
IEnumerable<ServiceCall> ActiveServiceCalls { get; }
Property Value
Methods
Add(string, string, string, string, params (string parameter, object argument)[])
Repository for currently executing service calls
Declaration
Guid Add(string agent, string method, string databaseContext, string user, params (string parameter, object argument)[] parameters)
Parameters
Returns
GetAggregatedServiceCalls(string)
Repository for currently executing service calls
Declaration
Dictionary<string, AggregatedServiceCall> GetAggregatedServiceCalls(string contextIdentifier)
Parameters
Type |
Name |
Description |
string |
contextIdentifier |
|
Returns
Remove(Guid)
Repository for currently executing service calls
Declaration
void Remove(Guid serviceCall)
Parameters
Type |
Name |
Description |
Guid |
serviceCall |
|
Extension Methods