enum flags

int32 flags {keepAlive = 0x1, noCache = 0x2, noTimeout = 0x4}

Basis Typ

Werte

If you use keepAlive flag for a connection, you should call request::closeKeepAlive when done with the connection, to free the connection handle. Otherwise the handle will only be freed when the http service is released.
This is a bitmask flag. The flag values can be combined to specify multiple options. To use the default option, use a flag with a value of 0.