Difference between revisions of "VCLEnqueueOperation"

From GreenVulcano Wiki
Jump to: navigation, search
(Created page with "Interface: '''it.greenvulcano.gvesb.virtual.EnqueueOperation''' <syntaxhighlight lang="java5"> /** * This interface identifies operations used to perform enqueue to a queue. *...")
 
Line 11: Line 11:
 
  *
 
  *
 
  */
 
  */
public interface EnqueueOperation extends Operation
 
{
 
    public static final String TYPE = "enqueue";
 
  
    /**
+
public static final String TYPE = "enqueue";
    * @see it.greenvulcano.gvesb.virtual.Operation#perform(it.greenvulcano.gvesb.buffer.GVBuffer)
+
 
    */
+
/**
    public GVBuffer perform(GVBuffer gvBuffer) throws ConnectionException, EnqueueException, InvalidDataException;
+
* @see it.greenvulcano.gvesb.virtual.Operation#perform(it.greenvulcano.gvesb.buffer.GVBuffer)
 +
*/
 +
public GVBuffer perform(GVBuffer gvBuffer) throws ConnectionException, EnqueueException, InvalidDataException;
  
}
 
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 13:18, 21 December 2012

Interface: it.greenvulcano.gvesb.virtual.EnqueueOperation

/**
 * This interface identifies operations used to perform enqueue to a queue.
 *
 *
 * @version 3.0.0 Feb 17, 2010
 * @author GreenVulcano Developer Team
 *
 *
 */

public static final String TYPE = "enqueue";

/**
* @see it.greenvulcano.gvesb.virtual.Operation#perform(it.greenvulcano.gvesb.buffer.GVBuffer)
*/
public GVBuffer perform(GVBuffer gvBuffer) throws ConnectionException, EnqueueException, InvalidDataException;