blob: 8cc50c7aaca8292954d73d942516711a6fecaa5d [file] [log] [blame]
tom0755a362014-09-24 11:54:43 -07001package org.onlab.onos.store.common;
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}