blob: d79e51c40033718fccefacdf09a0a7fa96af8103 [file] [log] [blame]
Yuta HIGUCHI41f2ec02014-10-27 09:54:43 -07001package org.onlab.onos.store.hz;
tomdc66b382014-09-22 17:05:47 -07002
3import com.hazelcast.core.HazelcastInstance;
4
5/**
6 * Bootstrap service to get a handle on a share Hazelcast instance.
7 */
8public interface StoreService {
9
10 /**
11 * Returns the shared Hazelcast instance for use as a distributed store
12 * backing.
13 *
14 * @return shared Hazelcast instance
15 */
16 HazelcastInstance getHazelcastInstance();
17
tomdc66b382014-09-22 17:05:47 -070018}