01: package com.icesoft.faces.webapp.command; 02: 03: public interface CommandQueue { 04: 05: void put(Command command); 06: 07: Command take(); 08: 09: void onPut(Runnable listener); 10: 11: void onTake(Runnable listener); 12: }