faust.agents.models
¶
Models used by agents internally.
- class faust.agents.models.ReqRepRequest(value, reply_to, correlation_id, *, __strict__=True, __faust=None, **kwargs)[source]¶
Value wrapped in a Request-Reply request.
- value: Any¶
Describes a field.
Used for every field in Record so that they can be used in join’s /group_by etc.
Examples
>>> class Withdrawal(Record): ... account_id: str ... amount: float = 0.0
>>> Withdrawal.account_id <FieldDescriptor: Withdrawal.account_id: str> >>> Withdrawal.amount <FieldDescriptor: Withdrawal.amount: float = 0.0>
- Parameters:
- Keyword Arguments:
model (Type) – Model class the field belongs to.
parent (FieldDescriptorT) – parent field if any.
- asdict()¶
Convert record to Python dictionary.
- class faust.agents.models.ReqRepResponse(key, value, correlation_id, *, __strict__=True, __faust=None, **kwargs)[source]¶
Request-Reply response.
- key: Any¶
Describes a field.
Used for every field in Record so that they can be used in join’s /group_by etc.
Examples
>>> class Withdrawal(Record): ... account_id: str ... amount: float = 0.0
>>> Withdrawal.account_id <FieldDescriptor: Withdrawal.account_id: str> >>> Withdrawal.amount <FieldDescriptor: Withdrawal.amount: float = 0.0>
- Parameters:
- Keyword Arguments:
model (Type) – Model class the field belongs to.
parent (FieldDescriptorT) – parent field if any.
- value: Any¶
Describes a field.
Used for every field in Record so that they can be used in join’s /group_by etc.
Examples
>>> class Withdrawal(Record): ... account_id: str ... amount: float = 0.0
>>> Withdrawal.account_id <FieldDescriptor: Withdrawal.account_id: str> >>> Withdrawal.amount <FieldDescriptor: Withdrawal.amount: float = 0.0>
- Parameters:
- Keyword Arguments:
model (Type) – Model class the field belongs to.
parent (FieldDescriptorT) – parent field if any.
- asdict()¶
Convert record to Python dictionary.