Interface DeliveryStateVisitor
-
- All Known Implementing Classes:
DeliveryStateVisitorAdapter
public interface DeliveryStateVisitor
The DeliveryState visitor.- Version:
- AMQP Version v100. Generation Date: Wed Apr 18 14:09:32 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(Accepted impl)
Visitor method for a Accepted type object.void
visit(Modified impl)
Visitor method for a Modified type object.void
visit(Received impl)
Visitor method for a Received type object.void
visit(Rejected impl)
Visitor method for a Rejected type object.void
visit(Released impl)
Visitor method for a Released type object.void
visit(Declared impl)
Visitor method for a Declared type object.void
visit(TransactionalState impl)
Visitor method for a TransactionalState type object.
-
-
-
Method Detail
-
visit
void visit(Received impl)
Visitor method for a Received type object.- Parameters:
impl
- a Received type object
-
visit
void visit(Accepted impl)
Visitor method for a Accepted type object.- Parameters:
impl
- a Accepted type object
-
visit
void visit(Rejected impl)
Visitor method for a Rejected type object.- Parameters:
impl
- a Rejected type object
-
visit
void visit(Released impl)
Visitor method for a Released type object.- Parameters:
impl
- a Released type object
-
visit
void visit(Modified impl)
Visitor method for a Modified type object.- Parameters:
impl
- a Modified type object
-
visit
void visit(Declared impl)
Visitor method for a Declared type object.- Parameters:
impl
- a Declared type object
-
visit
void visit(TransactionalState impl)
Visitor method for a TransactionalState type object.- Parameters:
impl
- a TransactionalState type object
-
-