Package com.hazelcast.concurrent.countdownlatch.operations

Examples of com.hazelcast.concurrent.countdownlatch.operations.CountDownOperation


                    case COUNT_DOWN_LATCH_BACKUP_OPERATION:
                        return new CountDownLatchBackupOperation();
                    case COUNT_DOWN_LATCH_REPLICATION_OPERATION:
                        return new CountDownLatchReplicationOperation();
                    case COUNT_DOWN_OPERATION:
                        return new CountDownOperation();
                    case GET_COUNT_OPERATION:
                        return new GetCountOperation();
                    case SET_COUNT_OPERATION:
                        return new SetCountOperation();
                    default:
View Full Code Here


        return timeunit != null ? timeunit.toMillis(time) : time;
    }

    @Override
    public void countDown() {
        CountDownOperation op = new CountDownOperation(name);
        InternalCompletableFuture f = invoke(op);
        f.getSafely();
    }
View Full Code Here

        return name;
    }

    @Override
    protected Operation prepareOperation() {
        return new CountDownOperation(name);
    }
View Full Code Here

        return name;
    }

    @Override
    protected Operation prepareOperation() {
        return new CountDownOperation(name);
    }
View Full Code Here

        return name;
    }

    @Override
    protected Operation prepareOperation() {
        return new CountDownOperation(name);
    }
View Full Code Here

        return timeunit != null ? timeunit.toMillis(time) : time;
    }

    @Override
    public void countDown() {
        CountDownOperation op = new CountDownOperation(name);
        InternalCompletableFuture f = invoke(op);
        f.getSafely();
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.concurrent.countdownlatch.operations.CountDownOperation

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.