Details
-
Feature Request
-
Status: Closed (View Workflow)
-
Major
-
Resolution:
Out of Date
-
None
-
None
-
None
-
Dynamic Client SDK (SP7), Mobile Service Team 1 Sprint 1
-
5
Description
Currently Mobile Core exposes the underlying RxJava implementation in its APIs. These should be abstracted away and replaced with a bus mechanism.
See here :
MobileCore core =new MobileCore(getApplicationContext()); core.configure(this).observeOn(AndroidSchedulers.mainThread()) .subscribe((serviceConfig)-> { //snip });
vs
@Subscribe public void onConfig(ServiceConfig serviceConfig) { //snip }