We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c93bcc commit 5703688Copy full SHA for 5703688
1 file changed
binder/src/main/java/io/grpc/binder/internal/LeakSafeOneWayBinder.java
@@ -19,6 +19,7 @@
19
import android.os.Binder;
20
import android.os.IBinder;
21
import android.os.Parcel;
22
+import androidx.annotation.BinderThread;
23
import io.grpc.Internal;
24
import java.util.logging.Level;
25
import java.util.logging.Logger;
@@ -58,6 +59,7 @@ public interface TransactionHandler {
58
59
* @return the value to return from {@link Binder#onTransact}. NB: "oneway" semantics mean this
60
* result will not delivered to the caller of {@link IBinder#transact}
61
*/
62
+ @BinderThread
63
boolean handleTransaction(int code, Parcel data);
64
}
65
0 commit comments