Example usage for android.os Messenger getBinder

List of usage examples for android.os Messenger getBinder

Introduction

In this page you can find the example usage for android.os Messenger getBinder.

Prototype

public IBinder getBinder() 

Source Link

Document

Retrieve the IBinder that this Messenger is using to communicate with its associated Handler.

Usage

From source file:android.support.v7.media.MediaRouteProviderService.java

static String getClientId(Messenger messenger) {
    return "Client connection " + messenger.getBinder().toString();
}