aboutsummaryrefslogtreecommitdiff
path: root/cast/cast_core/api/platform/platform_service.proto
blob: 858339bf707bde51912d6f8db9278221d1ded5dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
syntax = "proto3";

package cast.platform;

option optimize_for = LITE_RUNTIME;

// Platform service. Implemented and hosted by Platform.
service PlatformService {
  // Starts a runtime. Called by CastCoreService which endpoint is fetched from
  // the ServerContext.
  rpc StartRuntime(StartRuntimeRequest) returns (StartRuntimeResponse);

  // Stops a runtime.
  rpc StopRuntime(StopRuntimeRequest) returns (StopRuntimeResponse);

  // Gets device info.
  rpc GetDeviceInfo(GetDeviceInfoRequest) returns (GetDeviceInfoResponse);
}

message StartRuntimeRequest {
  string runtime_id = 1;
}

message StartRuntimeResponse {}

message StopRuntimeRequest {
  string runtime_id = 1;
}

message StopRuntimeResponse {}

message GetDeviceInfoRequest {}

message GetDeviceInfoResponse {
  // TODO: Add device information that Cast needs. Below is an approximation of
  // such information.
  bool has_surface = 1;
}