-
Notifications
You must be signed in to change notification settings - Fork 560
/
Copy pathdata_acquisition_service.proto
34 lines (25 loc) · 1.48 KB
/
data_acquisition_service.proto
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
// 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 java_outer_classname = "DataAcquisitionServiceProto";
import "bosdyn/api/data_acquisition.proto";
// The DataAcquisitionService is the main data acquisition service run on robot, which receives
// incoming requests and sends queries to all directory-registered DataAcquisitionPluginServices.
service DataAcquisitionService {
// Trigger a data acquisition to save data and metadata to the data buffer.
// Sent by the tablet or a client to initiate a data acquisition and buffering process.
rpc AcquireData(AcquireDataRequest) returns (AcquireDataResponse);
// 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 DAQ plugins during teleoperation.
// Please use the other RPCs for typical data acquisition.
rpc GetLiveData(LiveDataRequest) returns (LiveDataResponse);
}