blob: 8ba7925c8ff5ea9bc5a95b0714566d52a096d576 [file] [log] [blame]
package backtype.storm.state;
import backtype.storm.tuple.Tuple;
public interface ISubscribedState {
void set(Object id, Tuple tuple);
void remove(Object id);
}