IReusableStackSynthesizer
-
Extends: IStackSynthesizer
-
Implemented By: DefaultStackSynthesizer, IReusableStackSynthesizer
Interface for Stack Synthesizers that can be used for more than one stack.
Regular IStackSynthesizer
instances can only be bound to a Stack once.
IReusableStackSynthesizer
instances.
For backwards compatibility reasons, this class inherits from
IStackSynthesizer
, but if an object implements IReusableStackSynthesizer
,
no other methods than reusableBind()
will be called.
Methods
Name | Description |
---|---|
reusable_bind |
Produce a bound Stack Synthesizer for the given stack. |
reusable_bind
def reusable_bind(
stack: Stack
) -> IBoundStackSynthesizer
Produce a bound Stack Synthesizer for the given stack.
This method may be called more than once on the same object.
- Type: Stack