Package com.linecorp.armeria.server
Annotation Interface ServiceOption
An annotation used to configure
ServiceOptions
of an HttpService
.-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionlong
Server-side maximum length of a request.long
The amount of time to wait before aborting anHttpRequest
when its correspondingHttpResponse
is complete.long
Server-side timeout of a request in milliseconds.
-
Element Details
-
requestTimeoutMillis
long requestTimeoutMillisServer-side timeout of a request in milliseconds.- Default:
-1L
-
maxRequestLength
long maxRequestLengthServer-side maximum length of a request.- Default:
-1L
-
requestAutoAbortDelayMillis
long requestAutoAbortDelayMillisThe amount of time to wait before aborting anHttpRequest
when its correspondingHttpResponse
is complete.- Default:
-1L
-