AsyncInteractable
public protocol AsyncInteractable<Request, ResultData> : AbstractInteractable, Actor
This protocol represents an Interactor actor. Interactors provide an interface to perform some business logic, often acting as a datasource by interfacing with an API, handling system APIs, or some other self-contained work. For more information on interactors, see the documentation in Interactable
.
-
A type representing the enum return type for the data this Interactor sends back.
Declaration
Swift
associatedtype ResultData : ContentTypeable
-
perform(request:
Asynchronous) Requests the Interactor to perform an async operation.
Declaration
Swift
func perform(request: Request) async -> Result<ResultData, Error>
Parameters
request
A configuration model which defines the request.
Return Value
A
Result
which, if successful, returns the result data for the operation.