Package org.wicketstuff.datastores.hazelcast.demo

Source Code of org.wicketstuff.datastores.hazelcast.demo.HazelcastDataStoreApplication

package org.wicketstuff.datastores.hazelcast.demo;

import org.apache.wicket.pageStore.IDataStore;
import org.wicketstuff.datastores.common.app.BaseDataStoreApplication;
import org.wicketstuff.datastores.hazelcast.HazelcastDataStore;

import com.hazelcast.core.Hazelcast;
import com.hazelcast.core.HazelcastInstance;

public class HazelcastDataStoreApplication extends BaseDataStoreApplication {
 
  @Override
  protected IDataStore createDataStore() {
    HazelcastInstance instance = Hazelcast.newHazelcastInstance();
    return new HazelcastDataStore(instance);
  }
}
TOP

Related Classes of org.wicketstuff.datastores.hazelcast.demo.HazelcastDataStoreApplication

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.