Package com.hazelcast.config

Examples of com.hazelcast.config.QueueConfig


    static final String queueName = "test";
    static final SerializationService ss = new DefaultSerializationServiceBuilder().build();

    protected Config createConfig() {
        Config config = new Config();
        QueueConfig queueConfig = config.getQueueConfig(queueName);
        queueConfig.setMaxSize(6);
        return config;
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.config.QueueConfig

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.