SaaS CMS has officially launched! Learn more now.

Interface IBroadcastHandler

Interface that the component that will act as a Broadcast sender/reciever should implement

Namespace: EPiServer.WorkflowFoundation.Interfaces
Assembly: EPiServer.WorkflowFoundation.dll
Version: 7.19.2
Syntax
public interface IBroadcastHandler

Methods

BroadcastMessage(Guid, BroadcastOperation)

Is called when a message is to be broadcasted.

Declaration
void BroadcastMessage(Guid itemId, BroadcastOperation operation)
Parameters
Type Name Description
System.Guid itemId

The item id.

BroadcastOperation operation

The operation that occured

Remarks

The id can be either a definition id or a instance id

Initialize(IBroadcastedUpdate)

Initializes the sender

Declaration
void Initialize(IBroadcastedUpdate host)
Parameters
Type Name Description
IBroadcastedUpdate host

The host that should be notified with updates

ReleaseResources()

Releases the resources.

Declaration
void ReleaseResources()

Extension Methods