AdbMessage

A message to an ADB server.

JSON representation
{ // Union field contents can be only one of the following: "open": { object (Open) }, "streamData": { object (StreamData) } // End of list of possible types for union field contents. }
Fields

Union field contents.

contents can be only one of the following:

open

object (Open)

Open a new stream.

streamData

object (StreamData)

Send data to a stream.

Open

Message for opening a new stream.

JSON representation
{ "streamId": integer, "service": string }
Fields
streamId

integer

The unique ID that will be used to talk to this stream. This should probably just be a number that increments for each new Open request.

service

string

An ADB service to use in the new stream.