Out
Response feature to HTTP requests.
close
_out.close() : Out
Description
Closes the sending of HTTP response data.
Return
( Out )
closed
_out.closed() : boolean
Description
Checks whether the response to the HTTP request has already been closed.
Return
( boolean )
The response to the HTTP request has been closed.
copy
_out.copy(in: InputStream) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
in | InputStream |
Return
( Out )
_out.copy(in: InputStream, skip: long) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
in | InputStream | |
skip | long |
Return
( Out )
_out.copy(in: InputStream, skip: long, size: long) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
in | InputStream | |
skip | long | |
size | long |
Return
( Out )
_out.copy(file: File) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
file | File |
Return
( Out )
_out.copy(file: File, skip: long) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
file | File | |
skip | long |
Return
( Out )
_out.copy(file: File, skip: long, size: long) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
file | File | |
skip | long | |
size | long |
Return
( Out )
_out.copy(storage: Storage) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
storage | Storage |
Return
( Out )
_out.copy(storage: Storage, skip: long) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
storage | Storage | |
skip | long |
Return
( Out )
_out.copy(storage: Storage, skip: long, size: long) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
storage | Storage | |
skip | long | |
size | long |
Return
( Out )
flush
_out.flush() : void
Description
Sends what is pending accumulated in the buffer.
Return
( void )
getJSONHTMLEscape
_out.getJSONHTMLEscape() : boolean
Return
( boolean )
getJSONIdentFactor
_out.getJSONIdentFactor() : int
Return
( int )
getMirrors
_out.getMirrors() : java.util.List
Description
Gets the output replicas.
Return
( java.util.List )
List of replicas.
init
_out.init() : Out
Description
Starts a new instance of output.
Return
( Out )
The new instance of the Output feature.
isClosed
_out.isClosed() : boolean
Return
( boolean )
isStarted
_out.isStarted() : boolean
Return
( boolean )
json
_out.json(json: java.lang.Object) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
json | java.lang.Object |
Return
( Out )
_out.json(json: string) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
json | string |
Return
( Out )
_out.json(json: java.util.List) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
json | java.util.List |
Return
( Out )
_out.json(json: Config | Exec | Header | Req | Res | Values | DataSchema) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
json | Config | Exec | Header | Req | Res | Values | DataSchema |
Return
( Out )
_out.json(json: Values) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
json | Values |
Return
( Out )
jsonHTMLEscape
_out.jsonHTMLEscape() : boolean
Return
( boolean )
_out.jsonHTMLEscape(htmlEscape: boolean) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
htmlEscape | boolean |
Return
( Out )
jsonIdentFactor
_out.jsonIdentFactor() : int
Return
( int )
_out.jsonIdentFactor(jsonIdentFactor: int) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
jsonIdentFactor | int |
Return
( Out )
mirrors
_out.mirrors() : java.util.List
Description
Gets the output replicas.
Return
( java.util.List )
List of replicas.
output
_out.output() : OutputStream
Description
Provides the original output stream.
Return
( OutputStream )
The original output stream..
print
_out.print(bool: boolean) : Out
Description
Sends the boolean result.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
bool | boolean | Boolean value that will be sent. |
Return
( Out )
Current data output.
_out.print(number: byte) : Out
Description
Sends the number.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
number | byte | Number that will be sent. |
Return
( Out )
Current data output.
_out.print(character: char) : Out
Description
Sends the character.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
character | char | Character that will be sent. |
Return
( Out )
Current data output.
_out.print(bool: double) : Out
Description
Sends the boolean result.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
bool | double | Boolean value that will be sent. |
Return
( Out )
Current data output.
_out.print(bool: float) : Out
Description
Sends the boolean result.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
bool | float | Boolean value that will be sent. |
Return
( Out )
Current data output.
_out.print(bool: int) : Out
Description
Sends the boolean result.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
bool | int | Boolean value that will be sent. |
Return
( Out )
Current data output.
_out.print(obj: java.lang.Object) : Out
Description
Converts the object to text and sends it.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
obj | java.lang.Object | Object that will be converted to text and sent. |
Return
( Out )
Current data output.
_out.print(text: string) : Out
Description
Sends the text content.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
text | string | Content that will be sent. |
Return
( Out )
Current data output.
_out.print(bool: long) : Out
Description
Sends the boolean result.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
bool | long | Boolean value that will be sent. |
Return
( Out )
Current data output.
_out.print(bool: short) : Out
Description
Sends the boolean result.
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
bool | short | Boolean value that will be sent. |
Return
( Out )
Current data output.
printf
_out.printf(format: string, objects: [Ljava.lang.Object;[]) : Out
Attributes
NAME | TYPE | DESCRIPTION |
---|---|---|
format | string | |
objects | [Ljava.lang.Object;[] |
Return
( Out )
println
_out.println() : Out
Description
Sends a line break.