Package com.hazelcast.cluster.impl.operations

Examples of com.hazelcast.cluster.impl.operations.HeartbeatOperation


    }

    private void sendHeartbeat(Address target) {
        if (target == null) return;
        try {
            node.nodeEngine.getOperationService().send(new HeartbeatOperation(), target);
        } catch (Exception e) {
            if (logger.isFinestEnabled()) {
                logger.finest("Error while sending heartbeat -> "
                        + e.getClass().getName() + "[" + e.getMessage() + "]");
            }
View Full Code Here


                    case ADDRESS:
                        return new Address();
                    case MEMBER:
                        return new MemberImpl();
                    case HEARTBEAT:
                        return new HeartbeatOperation();
                    case CONFIG_CHECK:
                        return new ConfigCheck();
                    case BIND_MESSAGE:
                        return new BindMessage();
                    case MEMBERSHIP_EVENT:
View Full Code Here

TOP

Related Classes of com.hazelcast.cluster.impl.operations.HeartbeatOperation

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.