Package com.hazelcast.config

Examples of com.hazelcast.config.SetConfig


    }

    protected ISet newSetWithMaxSize(int maxSize) {
        String name = randomString();
        Config config = new Config();
        SetConfig setConfig = config.getSetConfig(name);
        setConfig.setMaxSize(maxSize);
        HazelcastInstance instance = createHazelcastInstance(config);
        return instance.getSet(name);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.config.SetConfig

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.