IGossipChannel Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Interface for gossip channel.
A gossip channel stores multicluster data (configuration, gateways) and exchanges this data with silos using a gossip-style communication, offering two different methods (Publish or Synchronize).
public interface IGossipChannel
type IGossipChannel = interface
Public Interface IGossipChannel
Properties
Name |
A name for the channel. |
Methods
Initialize(Guid, String) |
Initialize the channel with given configuration. |
Initialize(String, String) |
Initialize the channel with given configuration. |
Publish(IMultiClusterGossipData) |
One-way small-scale gossip. Used to update small amounts of data (e.g. multicluster configuration, single gateway status) in the channel. The passed-in data is stored only if it is newer than the already stored data. |
Publish(MultiClusterData) |
One-way small-scale gossip. Used to update small amounts of data (e.g. multicluster configuration, single gateway status) in the channel. The passed-in data is stored only if it is newer than the already stored data. |
Synchronize(IMultiClusterGossipData) |
Two-way bulk gossip.
|
Synchronize(MultiClusterData) |
Two-way bulk gossip.
|