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

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

There is a newer version: 0.0.4
Show newest version
package io.servicefabric.cluster.gossip;

import java.util.List;

import io.protostuff.Tag;

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

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

	public List getGossipList() {
		return gossipList;
	}

	@Override
	public String toString() {
		final StringBuilder sb = new StringBuilder("GossipRequest{");
		sb.append("gossipList=").append(gossipList);
		sb.append('}');
		return sb.toString();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy