blob: a672f54735f82c5c178d1d9b1972752a2f7e9032 [file] [log] [blame]
tomdc66b382014-09-22 17:05:47 -07001package org.onlab.onos.store;
2
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
18}