AbstractInteractable
public protocol AbstractInteractable<Request> : AnyObject
This is an abstract protocol representing an Interactor object and Interactor objects should not conform to this directly.
Important
This is an abstract protocol and Interactor objects should not conform to this directly. For Interactors running in a synchronous context where closures will provide operation results, please conform to Interactable
. If you need your Interactor to run as an Actor in an async context, please conform to AsyncInteractable
. And if your Interactor needs to represent a datasource for model retrieval, please use the Datasourceable
or AsyncDatasourceable
based on the context it should run in.
-
A configuration model which defines an interactor request.
Declaration
Swift
associatedtype Request : InteractorRequestConfiguring
-
prepareForRequests()
Default implementationThis method can be called to prepare the Interactor for requests. Typically you might want to call this from
Destinationable
‘sconfigureInteractor()
method.Default Implementation
Declaration
Swift
func prepareForRequests()