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

uk.co.shastra.hydra.messaging.storage.ServerDistanceInfo Maven / Gradle / Ivy

Go to download

Hydra is a simple, highly redundant pull-based messaging system. It uses CouchDb as its message store, and replication to deliver messages. It can be used by any language capable of making HTTP calls, and C# and Java client implementations are included.

The newest version!
package uk.co.shastra.hydra.messaging.storage;

public class ServerDistanceInfo {
	public String name;
	public boolean isReachable;
	public long distance;
	
	public ServerDistanceInfo(String name, boolean isReachable, long distance) {
		super();
		this.name = name;
		this.isReachable = isReachable;
		this.distance = distance;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy