You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To make IFluidContainer and IContainer consistent, connectionState will be added to IFluidContainer. This will be preferred over IFluidContainer.connected which will be deprecated in #9167.
The text was updated successfully, but these errors were encountered:
…ume()`, and `connected` (#9439)
For context on the reasoning behind these changes see: #8745
This PR adds `connect()` and `disconnect()` to `Container` and `IContainer`. These functions will combine to replace the functionality of `Container.setAutoReconnect()` (which is deprecated here). Furthermore, `connect()` is essentially a rename of `Container.resume()`, hence `resume()` has been deprecated as well.
In addition, `IContainer.connected` has been deprecated in favor of `IContainer.connectionState`. To make `IFluidContainer` consistent with these changes, `connectionState` has been added to `IFluidContainer`, and `IFluidContainer.connected` has been deprecated as well.
Follow up items:
1. Add `connect()` and `disconnect()` to `IFluidContainer` and `IContainer`
2. Add tests for the new functionality
3. Update documentation referencing deprecated APIs
4. Explore behavior if `disconnect()` is called while the container is attempting to connect
Closes#9396, #9167, #9744
To make
IFluidContainer
andIContainer
consistent,connectionState
will be added toIFluidContainer
. This will be preferred overIFluidContainer.connected
which will be deprecated in #9167.The text was updated successfully, but these errors were encountered: