setKeepalive method
Future<DynamiteResponse<SetKeepaliveResponseApplicationJson, void> >
setKeepalive({
- required int keepalive,
Set keepalive interval.
This endpoint requires admin access.
Returns a Future containing a DynamiteResponse
with the status code, deserialized body and headers.
Throws a DynamiteApiException
if the API call does not return an expected status code.
Parameters:
keepalive
Keep alive value in seconds.
Status codes:
- 200
See:
- setKeepaliveRaw for an experimental operation that returns a
DynamiteRawResponse
that can be serialized.
Implementation
Future<_i1.DynamiteResponse<SetKeepaliveResponseApplicationJson, void>> setKeepalive({required int keepalive}) async {
final rawResponse = setKeepaliveRaw(
keepalive: keepalive,
);
return rawResponse.future;
}