aurora/Aurora/Proto/playback.proto

21 lines
397 B
Protocol Buffer
Raw Normal View History

2019-05-31 14:17:14 +00:00
syntax = "proto3";
package Aurora.Proto.Playback;
2019-05-31 14:17:14 +00:00
2019-07-05 18:17:09 +00:00
import "Proto/general.proto";
2019-05-31 14:17:14 +00:00
service RemotePlaybackService {
2019-05-31 14:17:14 +00:00
//Playback Service
rpc GetPartyStream(Aurora.Proto.General.Empty) returns (stream Aurora.Proto.General.Chunk) {};
2019-05-31 14:17:14 +00:00
}
enum TransferStatusCode {
Unknown = 0;
Ok = 1;
Failed = 2;
}
message TransferStatus {
string Message = 1;
TransferStatusCode Code = 2;
}