mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 15:16:12 -04:00
26 lines
765 B
Protocol Buffer
26 lines
765 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
package location.nearby.proto.setup;
|
|
|
|
option optimize_for = LITE_RUNTIME;
|
|
option java_package = "com.google.location.nearby.proto";
|
|
option java_outer_classname = "SetupEnums";
|
|
option objc_class_prefix = "GNSP";
|
|
|
|
// The type of event being logged.
|
|
// Lightweight START_* and STOP_* events track instances of potential crashes
|
|
// that would result in a ClientSession not being logged.
|
|
enum EventType {
|
|
UNKNOWN_EVENT_TYPE = 0;
|
|
|
|
// A completed ClientSession, logged after a client disconnects.
|
|
CLIENT_SESSION = 1;
|
|
|
|
// Corresponds to googleApiClient.connect() and the beginning of a
|
|
// ClientSession.
|
|
START_CLIENT_SESSION = 2;
|
|
|
|
// Corresponds to googleApiClient.disconnect() and the end of a ClientSession.
|
|
STOP_CLIENT_SESSION = 3;
|
|
}
|