Inherits: IOpenable, IConfigurable, IReferenceable
Description
When making calls “cmd” parameter determines which what action shall be called, while other parameters are passed to the action itself.
Configuration parameters
- connections:
- uri: (optional) full connection string or use protocol, app_name and function_name to build
- protocol: (optional) connection protocol
- app_name: (optional) Azure Function application name
- function_name: (optional) Azure Function name
- options:
- retries: number of retries (default: 3)
- connect_timeout: connection timeout in milliseconds (default: 10 sec)
- timeout: invocation timeout in milliseconds (default: 10 sec)
- credentials:
- auth_code: Azure Function auth code if use custom authorization provide empty string
References
- *:logger:*:*:1.0 - (optional) ILogger components to pass log messages.
- *:counters:*:*:1.0 - (optional) ICounters components to pass collected measurements.
- *:discovery:*:*:1.0 - (optional) IDiscovery services to resolve connections.
- *:credential-store:*:*:1.0 - (optional) Credential stores to resolve credentials.
Fields
Instance methods
CallAsync
Calls a Azure Function action.
protected
Task<T> CallAsync<T>(string cmd, IContext context, object args)
- cmd: string - an action name to be called.
- context: IContext - (optional) a context to trace execution through a call chain.
- args: object - (optional) action parameters.
- returns: Task<T> - action result.
CloseAsync
Closes component and frees used resources.
public
Task CloseAsync(IContext context)
- context: IContext - (optional) a context to trace execution through a call chain.
Configure
Configures component by passing configuration parameters.
public
void Configure(ConfigParams config)
- config: ConfigParams - configuration parameters to be set.
Instrument
Adds instrumentation to log calls and measure call time. It returns a CounterTiming object that is used to end the time measurement.
protected
CounterTiming Instrument(IContext context, string name)
- context: IContext - (optional) a context to trace execution through a call chain.
- name: string - method name.
- returns: CounterTiming - CounterTiming object to end the time measurement.
InstrumentError
Adds instrumentation to error handling.
protected
void InstrumentError(IContext context, string methodName, Exception ex, bool rethrow = false)
- context: IContext - (optional) a context to trace execution through a call chain.
- methodName: string - a method name.
- ex: Exception - Error that occured during the method call.
- rethrow: bool - True to throw the exception.
InvokeAsync
Performs Azure Function invocation.
protected
Task<T> InvokeAsync<T>(string cmd, IContext context, object args)
- cmd: string - action result.
- context: IContext - (optional) a context to trace execution through a call chain.
- args: object - action result.
- returns: Task<T> - action result.
IsOpen
Checks if the component is opened.
public
bool IsOpen()
- returns: bool - true if the component has been opened and false otherwise.
OpenAsync
Opens the component.
public
Task OpenAsync(IContext context)
- context: IContext - (optional) a context to trace execution through a call chain.
SetReferences
Sets references to dependent components.
public
void SetReferences(IReferences references)
- references: IReferences - references to locate the component dependencies.
Examples
class MyAzureFunctionClient: AzureFunctionClient, IMyClient
{
...
///
public async Task<MyData> GetDataAsync(string context, string id) {
var timing = this.Instrument(context, "myclient.get_data");
var result = await this.CallAsync<MyData>("get_data", context, new { id=id });
timing.EndTiming();
return result;
}
...
///
public async Task Main()
{
var client = new MyAzureFunctionClient();
client.Configure(ConfigParams.FromTuples(
"connection.uri", "http://<APP_NAME>.azurewebsites.net/api/<FUNCTION_NAME>",
"connection.protocol", protocol,
"connection.app_name", appName,
"connection.function_name", functionName,
"credential.auth_code", authCode
));
///
var result = await client.GetDataAsync("123", "1");
}
}