All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.scalecube.cluster.gossip.GossipRequest Maven / Gradle / Ivy

package io.scalecube.cluster.gossip;

import io.protostuff.Tag;

import java.util.List;

/**
 * Gossip request which be transmitted through the network, contains list of gossips.
 */
final class GossipRequest {
  @Tag(1)
  private List gossipList;

  public GossipRequest(List gossipList) {
    this.gossipList = gossipList;
  }

  public List getGossipList() {
    return gossipList;
  }

  @Override
  public String toString() {
    return "GossipRequest{" + "gossipList=" + gossipList + '}';
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy