You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: framework/doc/content/source/controls/WebServerControl.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ The `WebServerControl` object is designed to allow an external process to contro
4
4
5
5
The server can either listen on a port via the [!param](/Controls/WebServerControl/port) parameter, or on a unix file socket via the [!param](/Controls/WebServerControl/file_socket) parameter. One of these two parameters must be provided.
6
6
7
-
It can then be managed via the [MooseControl](MooseControl/index.md optional=true) python utility.
7
+
It can then be managed via the [MooseControl](moosecontrol/index.md optional=true) python utility.
8
8
9
9
## API
10
10
@@ -49,7 +49,7 @@ where `<EXEC_ON_FLAG>` is the current execution flag. If the control is not curr
49
49
}
50
50
```
51
51
52
-
This endpoint can be accessed via the [MooseControl](MooseControl/index.md optional=true) python utility via the following methods:
52
+
This endpoint can be accessed via the [MooseControl](moosecontrol/index.md optional=true) python utility via the following methods:
53
53
54
54
-`wait()`: Waits for the control to be waiting
55
55
-`getWaitingFlag()`: Gets the current flag that the control is waiting on, if any
@@ -124,7 +124,7 @@ where `<NAME>` is the string path to the controllable parameter, `<TYPE>` is the
124
124
125
125
On success, the response will be empty with a status code of 201.
126
126
127
-
This endpoint can be accessed via the [MooseControl](MooseControl/index.md optional=true) python utility via the following methods:
127
+
This endpoint can be accessed via the [MooseControl](moosecontrol/index.md optional=true) python utility via the following methods:
128
128
129
129
-`setControllableBool()`: Sets a controllable `bool` parameter
130
130
-`setControllableReal()`: Sets a controllable `Real` parameter
@@ -137,13 +137,13 @@ This endpoint can be accessed via the [MooseControl](MooseControl/index.md optio
137
137
138
138
Tells a waiting control to continue with the execution. The control must be waiting in order to access this endpoint.
139
139
140
-
Interact with this endpoint by a `GET` request to `/continue`. On success, the response will be empty with a status code of 200. This endpoint can be accessed via the [MooseControl](MooseControl/index.md optional=true) python utility via `setContinue()`.
140
+
Interact with this endpoint by a `GET` request to `/continue`. On success, the response will be empty with a status code of 200. This endpoint can be accessed via the [MooseControl](moosecontrol/index.md optional=true) python utility via `setContinue()`.
141
141
142
142
### `terminate`
143
143
144
144
Tells a waiting control to terminate the simulation at the end of the current timestep. Any other execution points in the control during the timestep will be skipped. The control must be waiting in order to access this endpoint.
145
145
146
-
Interact with this endpoint by a `GET` request to `/terminate`. On success, the response will be empty with a status code of 200. This endpoint can be accessed via the [MooseControl](MooseControl/index.md optional=true) python utility via `setTerminate()`.
146
+
Interact with this endpoint by a `GET` request to `/terminate`. On success, the response will be empty with a status code of 200. This endpoint can be accessed via the [MooseControl](moosecontrol/index.md optional=true) python utility via `setTerminate()`.
0 commit comments