-
Notifications
You must be signed in to change notification settings - Fork 599
Expand file tree
/
Copy pathdata_acquisition_plugin_service.proto
More file actions
37 lines (28 loc) · 1.68 KB
/
data_acquisition_plugin_service.proto
File metadata and controls
37 lines (28 loc) · 1.68 KB
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
// Copyright (c) 2023 Boston Dynamics, Inc. All rights reserved.
//
// Downloading, reproducing, distributing or otherwise using the SDK Software
// is subject to the terms and conditions of the Boston Dynamics Software
// Development Kit License (20191101-BDSDK-SL).
syntax = "proto3";
package bosdyn.api;
option go_package = "bosdyn/api/data_acquisition_plugin_service";
option java_outer_classname = "DataAcquisitionPluginServiceProto";
import "bosdyn/api/data_acquisition.proto";
// The DataAcquisitionPluginService is a gRPC service that a payload developer implements to
// retrieve data from a sensor (or more generally perform some payload action) and optionally store
// that data on the robot via the DataAcquisitionStore service.
service DataAcquisitionPluginService {
// Trigger a data acquisition to save metadata and non-image data to the data buffer.
// Sent by the main Data Acquisition service as a result of a data acquisition request from the
// tablet or a client.
rpc AcquirePluginData(AcquirePluginDataRequest) returns (AcquirePluginDataResponse);
// Query the status of a data acquisition.
rpc GetStatus(GetStatusRequest) returns (GetStatusResponse);
// Get information from a Data Acquisition service; lists acquisition capabilities.
rpc GetServiceInfo(GetServiceInfoRequest) returns (GetServiceInfoResponse);
// Cancel an in-progress data acquisition.
rpc CancelAcquisition(CancelAcquisitionRequest) returns (CancelAcquisitionResponse);
// Request live data available from this plugin during teleoperation.
// Please use the other RPCs for typical data acquisition.
rpc GetLiveData(LiveDataRequest) returns (LiveDataResponse);
}