When creating components with the builder we have two approaches
1 - with two instructions
chain.create().adapter().id(ID)...
chain.configure().adapter().id(ID)....
2 and with a single instruction
chain.create().adapter().id(ID).configure()...
the behavior is different when the chain is already started, since in the first case, the component will be created and then configured, and in the second case, the component is created using the given configuration.
Both cases should give the same result.
When creating components with the builder we have two approaches
1 - with two instructions
chain.create().adapter().id(ID)...
chain.configure().adapter().id(ID)....
2 and with a single instruction
chain.create().adapter().id(ID).configure()...
the behavior is different when the chain is already started, since in the first case, the component will be created and then configured, and in the second case, the component is created using the given configuration.
Both cases should give the same result.