Table of Contents

Interface IClusterChangeListener

Namespace
Yarp.ReverseProxy.Model
Assembly
Yarp.ReverseProxy.dll

Listener for changes in the clusters.

public interface IClusterChangeListener

Methods

OnClusterAdded(ClusterState)

Gets called after a new ClusterState has been added.

void OnClusterAdded(ClusterState cluster)

Parameters

cluster ClusterState

Added ClusterState instance.

OnClusterChanged(ClusterState)

Gets called after an existing ClusterState has been changed.

void OnClusterChanged(ClusterState cluster)

Parameters

cluster ClusterState

Changed ClusterState instance.

OnClusterRemoved(ClusterState)

Gets called after an existing ClusterState has been removed.

void OnClusterRemoved(ClusterState cluster)

Parameters

cluster ClusterState

Removed ClusterState instance.