Interface IClusterChangeListener
Listener for changes in the clusters.
Namespace: Yarp.ReverseProxy.Model
Assembly: Yarp.ReverseProxy.dll
Syntax
public interface IClusterChangeListener
Methods
| Improve this Doc View SourceOnClusterAdded(ClusterState)
Gets called after a new ClusterState has been added.
Declaration
void OnClusterAdded(ClusterState cluster)
Parameters
Type | Name | Description |
---|---|---|
ClusterState | cluster | Added ClusterState instance. |
OnClusterChanged(ClusterState)
Gets called after an existing ClusterState has been changed.
Declaration
void OnClusterChanged(ClusterState cluster)
Parameters
Type | Name | Description |
---|---|---|
ClusterState | cluster | Changed ClusterState instance. |
OnClusterRemoved(ClusterState)
Gets called after an existing ClusterState has been removed.
Declaration
void OnClusterRemoved(ClusterState cluster)
Parameters
Type | Name | Description |
---|---|---|
ClusterState | cluster | Removed ClusterState instance. |