-
- All Implemented Interfaces:
-
com.lightningkite.rx.viewgenerators.HasBackAction
public interface EntryPoint implements HasBackAction
Implement this interface on your ViewGenerator to handle deep links and the back button being passed to the stack.
-
-
Method Summary
Modifier and Type Method Description UnithandleDeepLink(String schema, String host, String path, Map<String, String> params)BooleanonBackPressed()ValueSubject<List<ViewGenerator>>getMainStack()-
-
Method Detail
-
handleDeepLink
Unit handleDeepLink(String schema, String host, String path, Map<String, String> params)
-
onBackPressed
Boolean onBackPressed()
-
getMainStack
ValueSubject<List<ViewGenerator>> getMainStack()
-
-
-
-