Class: QgsBufferServerResponse

class qgis.server.QgsBufferServerResponse

Bases: qgis._server.QgsServerResponse

Class defining buffered response

Methods

body

Returns body

clear

Reset all headers and content for this response

data

Gets the data written so far

finish

Finish the response, ending the transaction

flush

Flushes the current output buffer to the network

header

Returns the header value

headers

Returns all the headers

headersSent

Returns True if the headers have already been sent

io

Returns the underlying QIODevice

removeHeader

Clear header Undo a previous ‘setHeader’ call

sendError

Send error This method delegates error handling at the server level.

setHeader

Set Header entry Add Header entry to the response Note that it is usually an error to set Header after data have been sent through the wire

setStatusCode

Set the http status code

statusCode

Returns the http status code

truncate

Truncate data

body(self)QByteArray

Returns body

Return type

QByteArray

clear(self)

Reset all headers and content for this response

data(self)QByteArray

Gets the data written so far

This is implementation dependent: some implementations may not give access to the underlying and return an empty array.

Note that each call to ‘flush’ may empty the buffer and in case of streaming process you may get partial content

Return type

QByteArray

finish(self)

Finish the response, ending the transaction

flush(self)

Flushes the current output buffer to the network

flush()’ may be called multiple times. For HTTP transactions headers will be written on the first call to ‘flush()’.

header(self, key: str)str

Returns the header value

Parameters

key (str) –

Return type

str

headers(self)Dict[str, str]

Returns all the headers

Return type

Dict[str, str]

headersSent(self)bool

Returns True if the headers have already been sent

Return type

bool

io(self)QIODevice

Returns the underlying QIODevice

Return type

QIODevice

removeHeader(self, key: str)

Clear header Undo a previous ‘setHeader’ call

Parameters

key (str) –

sendError(self, code: int, message: str)

Send error This method delegates error handling at the server level. This is different from calling setReturnCode() which let you return a specific response body. Calling sendError() will end the transaction and any attempt to write data or set headers will be an error.

Parameters
  • code (int) – HHTP return code value

  • message (str) – An informative error message

setHeader(self, key: str, value: str)

Set Header entry Add Header entry to the response Note that it is usually an error to set Header after data have been sent through the wire

Parameters
  • key (str) –

  • value (str) –

setStatusCode(self, code: int)

Set the http status code

Parameters

code (int) – HTTP status code value

statusCode(self)int

Returns the http status code

Return type

int

truncate(self)

Truncate data

Clear internal buffer