blob: ae2089d5edc3947d4e1d5f0b96ff1f3f951e42e2 [file] [log] [blame]
Madan Jampani4a9cb6d2014-10-17 10:48:50 -07001package org.onlab.onos.store.cluster.messaging;
2
3import java.util.concurrent.TimeUnit;
4import java.util.concurrent.TimeoutException;
5
6import org.onlab.onos.cluster.NodeId;
7
8public interface ClusterMessageResponse {
9 public NodeId sender();
10 public byte[] get(long timeout, TimeUnit timeunit) throws TimeoutException;
11 public byte[] get(long timeout) throws InterruptedException;
12}