Interface QueueMethodVisitor
-
- All Known Implementing Classes:
QueueMethodVisitorAdapter
public interface QueueMethodVisitor
The Queue method visitor.- Version:
- AMQP Version 091. Generation Date: Thu Apr 12 12:18:24 CEST 2012
- Author:
- IIT Software GmbH, Bremen/Germany, (c) 2012, All Rights Reserved
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
visit(Bind impl)
Visitor method for a Bind type object.void
visit(BindOk impl)
Visitor method for a BindOk type object.void
visit(Declare impl)
Visitor method for a Declare type object.void
visit(DeclareOk impl)
Visitor method for a DeclareOk type object.void
visit(Delete impl)
Visitor method for a Delete type object.void
visit(DeleteOk impl)
Visitor method for a DeleteOk type object.void
visit(Purge impl)
Visitor method for a Purge type object.void
visit(PurgeOk impl)
Visitor method for a PurgeOk type object.void
visit(Unbind impl)
Visitor method for a Unbind type object.void
visit(UnbindOk impl)
Visitor method for a UnbindOk type object.
-
-
-
Method Detail
-
visit
void visit(Declare impl)
Visitor method for a Declare type object.- Parameters:
impl
- a Declare type object
-
visit
void visit(DeclareOk impl)
Visitor method for a DeclareOk type object.- Parameters:
impl
- a DeclareOk type object
-
visit
void visit(Bind impl)
Visitor method for a Bind type object.- Parameters:
impl
- a Bind type object
-
visit
void visit(BindOk impl)
Visitor method for a BindOk type object.- Parameters:
impl
- a BindOk type object
-
visit
void visit(Unbind impl)
Visitor method for a Unbind type object.- Parameters:
impl
- a Unbind type object
-
visit
void visit(UnbindOk impl)
Visitor method for a UnbindOk type object.- Parameters:
impl
- a UnbindOk type object
-
visit
void visit(Purge impl)
Visitor method for a Purge type object.- Parameters:
impl
- a Purge type object
-
visit
void visit(PurgeOk impl)
Visitor method for a PurgeOk type object.- Parameters:
impl
- a PurgeOk type object
-
visit
void visit(Delete impl)
Visitor method for a Delete type object.- Parameters:
impl
- a Delete type object
-
visit
void visit(DeleteOk impl)
Visitor method for a DeleteOk type object.- Parameters:
impl
- a DeleteOk type object
-
-