Interface IntentHandlingComponent
-
- All Implemented Interfaces:
-
com.adyen.checkout.components.core.internal.ResultHandlingComponent
public interface IntentHandlingComponent implements ResultHandlingComponent
A component that expects to receive and handle an external result in the form of an Intent.
-
-
Method Summary
Modifier and Type Method Description abstract UnithandleIntent(Intent intent)Handles the Intent corresponding to this component, if valid. -
-
Method Detail
-
handleIntent
abstract Unit handleIntent(Intent intent)
Handles the Intent corresponding to this component, if valid. Depending on your implementation, extract the Intent and pass it to this method. In most cases it can be retrieved with either Activity.getIntent or Activity.onNewIntent.
- Parameters:
intent- the received Intent.
-
-
-
-