Show / Hide Table of Contents

Interface IUpdateListener<T>

A standard listener interface (used in a listener-subscriber pattern) used to update some collection stored at a remote location.

Namespace: peno_cluster_moderator
Assembly: peno_cluster_moderator.dll
Syntax
public interface IUpdateListener<T>
Type Parameters
Name Description
T

The type of object stored, or mapped onto an item, in the collection.

Methods

| Improve this Doc View Source

AddEvent(T)

Perform an action on a "add T" event.

Declaration
void AddEvent(T word)
Parameters
Type Name Description
T word

The added T-object.

| Improve this Doc View Source

RemoveEvent(T)

Perform an action on a "remove T" event.

Declaration
void RemoveEvent(T word)
Parameters
Type Name Description
T word

The removed T-object.

  • Improve this Doc
  • View Source
Back to top Generated by DocFX