Table of Contents

Interface IRequestStream<TRequest, TResponse>

Namespace
PushTechnology.ClientInterface.Client.Features
Assembly
Diffusion.Client.dll

The stream to receive request notifications.

public interface IRequestStream<TRequest, TResponse> : IStream, ICallback

Type Parameters

TRequest

The request type.

TResponse

The response type.

Inherited Members

Remarks

Since 6.1

Methods

OnRequest(string, TRequest, IResponder<TResponse>)

Called on incoming request.

void OnRequest(string path, TRequest request, IResponder<TResponse> responder)

Parameters

path string

Message path.

request TRequest

Request value.

responder IResponder<TResponse>

Responder for the message.