Package com.hazelcast.wan.impl

Examples of com.hazelcast.wan.impl.WanReplicationServiceImpl


        throw new UnsupportedOperationException("Offheap feature is only available on Hazelcast Enterprise!");
    }

    @Override
    public WanReplicationService geWanReplicationService() {
        return new WanReplicationServiceImpl(node);
    }
View Full Code Here


    }

    @Override
    public <T> T createService(Class<T> clazz) {
        if (WanReplicationService.class.isAssignableFrom(clazz)) {
            return (T) new WanReplicationServiceImpl(node);
        } else if (ICacheService.class.isAssignableFrom(clazz)) {
            return (T) new CacheService();
        }
        throw new IllegalArgumentException("Unknown service class: " + clazz);
    }
View Full Code Here

TOP

Related Classes of com.hazelcast.wan.impl.WanReplicationServiceImpl

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.