Added note in Http Actions about timeout parameter (#844)

pull/848/head
vzorglub 2019-01-04 14:48:06 +00:00 committed by Jerome Luckenbach
parent 1475a17afb
commit 3ebc334b70
1 changed files with 2 additions and 0 deletions

View File

@ -71,6 +71,8 @@ Note: The commandLine variable often has to use a special format where @@ needs
- `sendHttpPostRequest(String url, String contentType, String content)`: Sends a POST-HTTP request with the given content and returns the result as a String - `sendHttpPostRequest(String url, String contentType, String content)`: Sends a POST-HTTP request with the given content and returns the result as a String
- `sendHttpDeleteRequest(String url)`: Sends a DELETE-HTTP request and returns the result as a String - `sendHttpDeleteRequest(String url)`: Sends a DELETE-HTTP request and returns the result as a String
Note: All HTTP Actions can have a last `timeout` parameter added in ms. eg. `sendHttpPostRequest(String url, String contentType, String content, int timeout)`
### Timers ### Timers
`createTimer(AbstractInstant instant, Procedure procedure)`: schedules a block of code to execute at a future time `createTimer(AbstractInstant instant, Procedure procedure)`: schedules a block of code to execute at a future time