Difference between revisions of "VCLEnqueueOperation"
(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 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; | ||
| − | |||
</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;