packages.fetchai.protocols.signing.dialogues¶
This module contains the classes required for signing dialogue management.
- SigningDialogue: The dialogue class maintains state of a dialogue and manages it.
- SigningDialogues: The dialogues class keeps track of all dialogues.
SigningDialogue Objects¶
The signing dialogue class maintains state of a dialogue and manages it.
Role Objects¶
This class defines the agent's role in a signing dialogue.
EndState Objects¶
This class defines the end states of a signing dialogue.
__
init__
¶
def __init__(dialogue_label: DialogueLabel,
self_address: Address,
role: Dialogue.Role,
message_class: Type[SigningMessage] = SigningMessage) -> None
Initialize a dialogue.
Arguments:
dialogue_label
: the identifier of the dialogueself_address
: the address of the entity for whom this dialogue is maintainedrole
: the role of the agent this dialogue is maintained formessage_class
: the message class used
SigningDialogues Objects¶
This class keeps track of all signing dialogues.
__
init__
¶
def __init__(self_address: Address,
role_from_first_message: Callable[[Message, Address],
Dialogue.Role],
dialogue_class: Type[SigningDialogue] = SigningDialogue) -> None
Initialize dialogues.
Arguments:
self_address
: the address of the entity for whom dialogues are maintaineddialogue_class
: the dialogue class usedrole_from_first_message
: the callable determining role from first message