reactivecircus.blueprint.interactor.InteractorParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blueprint-interactor-common Show documentation
Show all versions of blueprint-interactor-common Show documentation
Common APIs for all Blueprint Interactor implementations
package reactivecircus.blueprint.interactor
/**
* Interface representing params to be passed in for each interactor.
* Implement this for each interactor that requires specific params.
*/
public interface InteractorParams
/**
* A special [InteractorParams] representing empty params.
* Use this when the interactor requires no params.
*/
public object EmptyParams : InteractorParams