Examples of HeartbeatOperation


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

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

                    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

Examples of org.xtreemfs.babudb.replication.service.operations.HeartbeatOperation

        operations.put(op.getProcedureId(), op);
       
        op = new VolatileStateOperation(babuDBI);
        operations.put(op.getProcedureId(), op);
       
        op = new HeartbeatOperation(pStates);
        operations.put(op.getProcedureId(), op);
       
        op = new SynchronizeOperation(reqMan);
        operations.put(op.getProcedureId(),op);
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.