Skip to content
Snippets Groups Projects
Commit c2b33f7c authored by Tim Übelhör's avatar Tim Übelhör
Browse files

Added capability to modify the step size.

parent 18e6d932
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,9 @@ service ModeliBackend {
rpc NewValues (NewValuesRequest) returns (stream NewValuesResponse);
// Stream log messages to the client
rpc Log (LogRequest) returns (stream LogResponse);
// Modify the simulation step size
rpc SetStepSize (SetStepSizeRequest) returns (SetStepSizeResponse);
}
// The metadata of a ChannelLink
......@@ -183,3 +186,9 @@ message LogResponse {
int32 status = 2;
string message = 3;
}
message SetStepSizeRequest {
double step_size = 1;
}
message SetStepSizeResponse {}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment