public class MediatorFeedbackBasedProtocol extends MediatorProtocol
isAborted
Constructor and Description |
---|
MediatorFeedbackBasedProtocol() |
Modifier and Type | Method and Description |
---|---|
java.util.Map<NegotiationParty,java.util.List<NegotiationParty>> |
getActionListeners(java.util.List<NegotiationParty> parties)
Get a map of parties that are listening to each other's response
|
Bid |
getCurrentAgreement(Session session,
java.util.List<NegotiationParty> parties)
Returns the last offer that got accepted.
|
Round |
getRoundStructure(java.util.List<NegotiationParty> parties,
Session session)
Get the structure of the current round.
|
getMediator, getNonMediators
afterSession, applyAction, beforeSession, checkOffer, endNegotiation, endNegotiation, exclude, getNumberOfAgreeingParties, includeOnly, isFinished, listenToAll, listenToNone
public Round getRoundStructure(java.util.List<NegotiationParty> parties, Session session)
MultilateralProtocol
NegotiationParty
and the
complete Session
which can be used to diversify the round
structure at some point during the session.getRoundStructure
in interface MultilateralProtocol
getRoundStructure
in class DefaultMultilateralProtocol
parties
- The parties currently participatingsession
- The complete session historypublic java.util.Map<NegotiationParty,java.util.List<NegotiationParty>> getActionListeners(java.util.List<NegotiationParty> parties)
DefaultMultilateralProtocol
getActionListeners
in interface MultilateralProtocol
getActionListeners
in class DefaultMultilateralProtocol
parties
- The parties involved in the current negotiationNegotiationParty
that is responding to
a NegotiationParty.chooseAction(java.util.List)
event,
and the value is a list of NegotiationParty
that are
listening to that key party's response.public Bid getCurrentAgreement(Session session, java.util.List<NegotiationParty> parties)
getCurrentAgreement
in interface MultilateralProtocol
getCurrentAgreement
in class DefaultMultilateralProtocol
session
- The complete session history up to this pointparties
- The parties involved in the current negotiationVote.ACCEPT
), or null if no agreement
yet.