public int sendBufferMultiplier = UdpCommunications.DEFAULT_SEND_BUFFER_MULTIPLIER;
public long unreachableDelay = (int) TimeUnit.DAYS.toMillis(2);
public Gossip construct() throws SocketException {
Random entropy = new Random();
UdpCommunications comms = constructUdpComms();
SystemView view = new SystemView(entropy, comms.getLocalAddress(),
seeds, quarantineDelay,
unreachableDelay);
return new Gossip(Generators.timeBasedGenerator(), comms, view,
getFdFactory(), entropy, gossipInterval, gossipUnit,
cleanupCycles, heartbeatCycle, redundancy);