Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
service DataMover {
    rpc Register(Endpoint) returns (Handle);
    rpc GetActions(Handle) returns (stream ActionItem);
    rpc StatusStream(stream ActionStatus) returns (Empty);
}

 

Register(Endpoint) returns (Handle)

Code Block
message Endpoint {
    string fs_url = 2;
    uint32 archive = 1;
}
 

The mover register a specific archive id with the agent.

GetActions(Handle) returns (stream ActionItem)

...