AndLinker icon indicating copy to clipboard operation
AndLinker copied to clipboard

AndLinker is a IPC library for Android, which combines the features of AIDL and Retrofit. Allows IPC call seamlessly compose with RxJava and RxJava2 call adapters.

Results 2 AndLinker issues
Sort by recently updated
recently updated
newest added

```java // MethodExecutor.java Response execute(Object[] args) { Object result = null; int statusCode = Response.STATUS_CODE_SUCCESS; String resultMsg = String.format("Call method '%s' successfully!", mMethod.getName()); Throwable throwable = null; try { result...

写了个activity onCreate里去初始化绑定,onDestroy里解绑, 然后进行快速打开关闭页面的测试 绑定和解绑都可以正确进行 远端方法也能成功调用 只有callback,第一次成功,重新打开页面就完全没反应, 过好久再打开页面才有回调。