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

com.hazelcast.cluster.Bind Maven / Gradle / Ivy

There is a newer version: 5.5.0
Show newest version
/**
 * 
 */
package com.hazelcast.cluster;

import com.hazelcast.nio.Address;
import com.hazelcast.nio.ConnectionManager;

public class Bind extends Master {

    public Bind() {
    }

    public Bind(Address localAddress) {
        super(localAddress);
    }

    @Override
    public String toString() {
        return "Bind " + address;
    }

    public void process() {
        ConnectionManager.get().bind(address, getConnection(), true);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy