Package com.hazelcast.instance

Examples of com.hazelcast.instance.BuildInfo


    public boolean sendMasterQuestion(Address toAddress) {
        if (toAddress == null) {
            throw new NullPointerException("No endpoint is specified!");
        }
        BuildInfo buildInfo = node.getBuildInfo();
        JoinMessage joinMessage = new JoinMessage(Packet.VERSION, buildInfo.getBuildNumber(), thisAddress,
                thisMember.getUuid(), node.createConfigCheck(), getSize());
        return nodeEngine.getOperationService().send(new MasterDiscoveryOperation(joinMessage), toAddress);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.instance.BuildInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.