IGossipChannel.Synchronize Method
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.
Overloads
Synchronize(IMultiClusterGossipData) |
Two-way bulk gossip.
|
Synchronize(MultiClusterData) |
Two-way bulk gossip.
|
Synchronize(IMultiClusterGossipData)
Two-way bulk gossip.
- any passed-in information that is newer than stored information is stored.
- any stored information that is newer than passed-in information is returned.
public System.Threading.Tasks.Task<Orleans.Runtime.IMultiClusterGossipData> Synchronize (Orleans.Runtime.IMultiClusterGossipData gossipdata);
abstract member Synchronize : Orleans.Runtime.IMultiClusterGossipData -> System.Threading.Tasks.Task<Orleans.Runtime.IMultiClusterGossipData>
Public Function Synchronize (gossipdata As IMultiClusterGossipData) As Task(Of IMultiClusterGossipData)
Parameters
- gossipdata
- IMultiClusterGossipData
The gossip data to compare to the current contents, and store if newer, or not there
Returns
returns all stored data that is newer, or not part of, the gossipdata
Applies to
Synchronize(MultiClusterData)
Two-way bulk gossip.
- any passed-in information that is newer than stored information is stored.
- any stored information that is newer than passed-in information is returned.
public System.Threading.Tasks.Task<Orleans.Runtime.MultiClusterNetwork.MultiClusterData> Synchronize (Orleans.Runtime.MultiClusterNetwork.MultiClusterData gossipdata);
abstract member Synchronize : Orleans.Runtime.MultiClusterNetwork.MultiClusterData -> System.Threading.Tasks.Task<Orleans.Runtime.MultiClusterNetwork.MultiClusterData>
Public Function Synchronize (gossipdata As MultiClusterData) As Task(Of MultiClusterData)
Parameters
- gossipdata
- MultiClusterData
The gossip data to compare to the current contents, and store if newer, or not there
Returns
returns all stored data that is newer, or not part of, the gossipdata