1 24 25 package org.objectweb.dream.queue; 26 27 import org.objectweb.dream.message.Message; 28 29 46 public interface Buffer 47 { 48 49 String ITF_NAME = "buffer"; 50 51 58 int storedMessagesIndicator(); 59 60 67 int availableMessagesIndicator(); 68 69 78 int availableSpaceIndicator(); 79 80 91 void add(Message message) throws InterruptedException ; 92 93 100 Message remove() throws InterruptedException ; 101 102 109 Message get() throws InterruptedException ; 110 111 } | Popular Tags |