1 24 25 package org.objectweb.dream.queue; 26 27 import org.objectweb.fractal.api.control.AttributeController; 28 29 34 public interface PushPullKeyQueueAttributeController 35 extends 36 AttributeController 37 { 38 39 43 String RETURN_NULL_MESSAGE_NOT_FOUND_POLICY = "return-null"; 44 45 49 String EXCEPTION_MESSAGE_NOT_FOUND_POLICY = "exception"; 50 51 56 String getMessageNotFoundPolicy(); 57 58 63 void setMessageNotFoundPolicy(String policy); 64 65 70 String getKeyChunkName(); 71 72 77 void setKeyChunkName(String name); 78 79 } | Popular Tags |