Interface ConnectionMethodVisitor
-
- All Known Implementing Classes:
ConnectionMethodVisitorAdapter
public interface ConnectionMethodVisitor
The Connection 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(Close impl)
Visitor method for a Close type object.void
visit(CloseOk impl)
Visitor method for a CloseOk type object.void
visit(Open impl)
Visitor method for a Open type object.void
visit(OpenOk impl)
Visitor method for a OpenOk type object.void
visit(Secure impl)
Visitor method for a Secure type object.void
visit(SecureOk impl)
Visitor method for a SecureOk type object.void
visit(Start impl)
Visitor method for a Start type object.void
visit(StartOk impl)
Visitor method for a StartOk type object.void
visit(Tune impl)
Visitor method for a Tune type object.void
visit(TuneOk impl)
Visitor method for a TuneOk type object.
-
-
-
Method Detail
-
visit
void visit(Start impl)
Visitor method for a Start type object.- Parameters:
impl
- a Start type object
-
visit
void visit(StartOk impl)
Visitor method for a StartOk type object.- Parameters:
impl
- a StartOk type object
-
visit
void visit(Secure impl)
Visitor method for a Secure type object.- Parameters:
impl
- a Secure type object
-
visit
void visit(SecureOk impl)
Visitor method for a SecureOk type object.- Parameters:
impl
- a SecureOk type object
-
visit
void visit(Tune impl)
Visitor method for a Tune type object.- Parameters:
impl
- a Tune type object
-
visit
void visit(TuneOk impl)
Visitor method for a TuneOk type object.- Parameters:
impl
- a TuneOk type object
-
visit
void visit(Open impl)
Visitor method for a Open type object.- Parameters:
impl
- a Open type object
-
visit
void visit(OpenOk impl)
Visitor method for a OpenOk type object.- Parameters:
impl
- a OpenOk type object
-
visit
void visit(Close impl)
Visitor method for a Close type object.- Parameters:
impl
- a Close type object
-
visit
void visit(CloseOk impl)
Visitor method for a CloseOk type object.- Parameters:
impl
- a CloseOk type object
-
-