AI-generated Key Takeaways
- 
          The MessagesClientinterface is deprecated and will be removed by the end of 2023;ConnectionsClientshould be used instead.
- 
          This API allows apps to publish and subscribe to simple messages with nearby devices without requiring a Google account. 
- 
          Using the API requires enabling the Nearby Messages API in the Google Developers Console and adding an API key to the application's manifest. 
- 
          Messages API operations should generally be performed from a foreground Activity, except for subscribe variants using PendingIntent.
This interface is deprecated.
      Nearby Messages will be removed by the end of 2023. Use ConnectionsClient
      instead.
API which allows your app to publish simple messages and subscribe to receive those messages from nearby devices.
The API performs its operations in an unauthenticated manner, so it does not require a Google account. However, it requires that the developer has a project in the Google Developers Console with the following prerequisites:
- Nearby Messages API turned on.
 Follow these instructions to enable the "Nearby Messages API".
- An API key for the Android application using its package name and SHA1 fingerprint.
 Follow these instructions to create the "Public API access" API key specific for your app.
- Add the API key generated above to your application's manifest:
          <manifest ...> <application ...> <meta-data android:name="com.google.android.nearby.messages.API_KEY" android:value="SPECIFY_APPLICATION_API_KEY_HERE" /> <activity> ... </activity> </application> </manifest>
The Messages API should be accessed from the Nearby entry point.
      For example:
 @Override
 protected void onStart() {
   Task<Void> task = Nearby.getMessagesClient(context).publish(new Message(bytes));
 }
 All of the Messages APIs should be used from a foreground Activity, with the exception of
      the variants of subscribe that take a PendingIntent
      parameter. Your Activity should 
      publish(Message) or 
      subscribe(MessageListener) either in Activity.onStart()
      or in response to a user action in a visible Activity, and you should always symmetrically
      
      unpublish(Message) or 
      unsubscribe(MessageListener) in Activity.onStop().
Public Method Summary
| abstract void | 
                  
                  handleIntent(Intent
                  intent, MessageListener
                  messageListener)
                   
                    Extracts information from an Intent sent as a subscription callback, and calls
                    the corresponding methods on the given MessageListener.
                   | 
| abstract Task<Void> | 
                  
                  publish(Message
                  message)
                   
                    Publishes a message so that it is visible to nearby devices, using the default
                    options from  
                    PublishOptions.DEFAULT. | 
| abstract Task<Void> | 
                  
                  publish(Message
                  message, PublishOptions
                  options)
                   
                    Publishes a message so that it is visible to nearby devices.
                   | 
| abstract Task<Void> | 
                  
                  registerStatusCallback(StatusCallback
                  statusCallback)
                   
                    Registers a status callback, which will be notified when significant events
                    occur that affect Nearby for your app.
                   | 
| abstract Task<Void> | 
                  
                  subscribe(MessageListener
                  listener, 
                  SubscribeOptions options)
                   
                    Subscribes for published messages from nearby devices.
                   | 
| abstract Task<Void> | 
                  
                  subscribe(MessageListener
                  listener)
                   
                    Subscribes for published messages from nearby devices, using the default
                    options in  
                    SubscribeOptions.DEFAULT. | 
| abstract Task<Void> | 
                  
                  subscribe(PendingIntent
                  pendingIntent, 
                  SubscribeOptions options)
                   
                    Note: Currently, this method only finds messages attached to BLE beacons.
                   | 
| abstract Task<Void> | 
                  
                  subscribe(PendingIntent
                  pendingIntent)
                   
                    Note: Currently, this method only finds messages attached to BLE beacons.
                   | 
| abstract Task<Void> | |
| abstract Task<Void> | 
                  
                  unregisterStatusCallback(StatusCallback
                  statusCallback)
                   
                    Unregisters a status callback previously registered with  
                    registerStatusCallback(StatusCallback). | 
| abstract Task<Void> | |
| abstract Task<Void> | 
Public Methods
public abstract void handleIntent (Intent intent, MessageListener messageListener)
Extracts information from an Intent sent as a subscription callback, and calls the corresponding methods on the given MessageListener.
Note: Only 
            MessageListener.onFound(Message) and 
            MessageListener.onLost(Message) are supported.
For example:
 PendingIntent pendingIntent = PendingIntent.getService(context, 0,
     new Intent(context, MyService.class), PendingIntent.FLAG_UPDATE_CURRENT);
 messagesClient.subscribe(pendingIntent, ...);
 public class MyService extends IntentService {
   protected void onHandleIntent(Intent intent) {
     messagesClient.handleIntent(intent, new MessageListener() {
       @Override
       public void onFound(Message message) {...}
     }
   });
 }
 Parameters
| intent | An intent that was sent as a result of 
                subscribe(PendingIntent, SubscribeOptions) | 
|---|---|
| messageListener | This will be called immediately with information present in the Intent | 
public abstract Task<Void> publish (Message message)
Publishes a message so that it is visible to nearby devices, using the default
            options from 
            PublishOptions.DEFAULT.
Parameters
| message | A Messageto publish for nearby devices to see | 
|---|
See Also
public abstract Task<Void> publish (Message message, PublishOptions options)
Publishes a message so that it is visible to nearby devices.
The message is only delivered to apps that share the same project id in the Developer Console and have an active subscription. Create project identifiers and turn on the Nearby API in the Google Developers Console.
Parameters
| message | A Messageto publish for nearby devices to see | 
|---|---|
| options | A PublishOptionsobject for this operation | 
Returns
- The Taskwhich can be used to determine if the call succeeded
public abstract Task<Void> registerStatusCallback (StatusCallback statusCallback)
Registers a status callback, which will be notified when significant events occur that affect Nearby for your app.
When your app first calls this API, it may be immediately called back with current status.
Parameters
| statusCallback | A callback to notify when events occur | 
|---|
Returns
- The Taskwhich can be used to determine if the call succeeded
public abstract Task<Void> subscribe (MessageListener listener, SubscribeOptions options)
Subscribes for published messages from nearby devices.
Only messages published by apps sharing the same project id in the Developer Console will be delivered.
Parameters
| listener | A MessageListenerimplementation to get callbacks of received messages | 
|---|---|
| options | A SubscribeOptionsobject for this operation | 
Returns
- The Taskwhich can be used to determine if the call succeeded
public abstract Task<Void> subscribe (MessageListener listener)
Subscribes for published messages from nearby devices, using the default options in
            
            SubscribeOptions.DEFAULT.
Parameters
| listener | A MessageListenerimplementation to get callbacks of received messages | 
|---|
public abstract Task<Void> subscribe (PendingIntent pendingIntent, SubscribeOptions options)
Note: Currently, this method only finds messages attached to BLE beacons. See Beacons.
Subscribes for published messages from nearby devices in a persistent and low-power manner. This uses less battery, but will have higher latency and lower reliability. Notably, updates may only be delivered when the device's screen turns on (or when Bluetooth turns on). The subscription will be retained after the client disconnects.
Call 
            handleIntent(Intent, MessageListener) to handle the Intents received from
            Nearby while subscribed. Call 
            unsubscribe(PendingIntent) to cancel the subscription.
Each application can pass up to 5 PendingIntents.
            When the limit is reached, this returns 
            NearbyMessagesStatusCodes.TOO_MANY_PENDING_INTENTS, and the subscription is
            not created.
Parameters
| pendingIntent | A PendingIntentto get callbacks about nearby messages | 
|---|---|
| options | A SubscribeOptionsobject for this operation | 
Returns
- The Taskwhich can be used to determine if the call succeeded
public abstract Task<Void> subscribe (PendingIntent pendingIntent)
Note: Currently, this method only finds messages attached to BLE beacons. See Beacons.
Subscribes for published messages from nearby devices in a persistent and low-power
            manner, using the default options in 
            SubscribeOptions.DEFAULT.
Parameters
| pendingIntent | A PendingIntentto get callbacks about nearby messages | 
|---|
public abstract Task<Void> unregisterStatusCallback (StatusCallback statusCallback)
Unregisters a status callback previously registered with 
            registerStatusCallback(StatusCallback).
Parameters
| statusCallback | A callback previously registered with 
                registerStatusCallback(StatusCallback) | 
|---|
Returns
- The Taskwhich can be used to determine if the call succeeded
public abstract Task<Void> unsubscribe (MessageListener listener)
Cancels an existing subscription.
Parameters
| listener | A MessageListenerimplementation that is currently subscribed | 
|---|
Returns
- The Taskwhich can be used to determine if the call succeeded
public abstract Task<Void> unsubscribe (PendingIntent pendingIntent)
Cancels an existing subscription.
Parameters
| pendingIntent | A PendingIntentthat is currently subscribed | 
|---|
Returns
- The Taskwhich can be used to determine if the call succeeded