blob: 6d9f1295181f2743b4dab381c0f566fa1861435c [file] [log] [blame]
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -08001package org.onlab.onos.store.service.impl;
2
3import net.kuujo.copycat.cluster.TcpMember;
4import net.kuujo.copycat.spi.protocol.Protocol;
5
6// interface required for connecting DatabaseManager + ClusterMessagingProtocol
7// TODO: Consider changing ClusterMessagingProtocol to non-Service class
8public interface DatabaseProtocolService extends Protocol<TcpMember> {
9
10}