blob: 60b1e9805c74aa58194ff65dbd8fe9c89dc13f7f [file] [log] [blame]
Brian O'Connorabafb502014-12-02 22:26:20 -08001package org.onosproject.store.service.impl;
Yuta HIGUCHI0c1c1002014-11-05 13:47:25 -08002
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}