Interface ISessionEventStream

The stream to receive session event listener notifications.

Inherited Members
IStream.OnClose()
ICallback.OnError(ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
Assembly: Diffusion.Client.dll
Syntax
public interface ISessionEventStream : IStream, ICallback
Remarks

This is used along with AddSessionEventListenerAsync(ISessionEventStream, ISessionEventParameters) to obtain notifications for client sessions.

Since 6.11.

Methods

OnSessionEvent(ISessionEventStreamEvent)

Notification of a session event.

Declaration
void OnSessionEvent(ISessionEventStreamEvent sessionEventStreamEvent)
Parameters
Type Name Description
ISessionEventStreamEvent sessionEventStreamEvent

The session event.

Back to top