Server.unpauseMessage

void unpauseMessage(soup.server_message.ServerMessage msg)

Resumes I/O on msg.

Use this to resume after calling soup.server.Server.pauseMessage, or after adding a new chunk to a chunked response.

I/O won't actually resume until you return to the main loop.

This must only be called on a soup.server_message.ServerMessage which was created by the #SoupServer and are currently doing I/O, such as those passed into a soup.types.ServerCallback or emitted in a soup.server.Server.requestRead signal.

Parameters

msga #SoupServerMessage associated with server.

Deprecated