Name

gun:update_flow - Update a stream’s flow control value

Description

update_flow(ConnPid, StreamRef, Flow) -> ok

ConnPid   :: pid()
StreamRef :: gun:stream_ref()
Flow      :: pos_integer()

Update a stream’s flow control value.

The flow value can only ever be incremented.

This function does nothing for streams that have flow control disabled (which is the default).

Arguments

ConnPid

The pid of the Gun connection process.

StreamRef

Identifier of the stream for the original request.

Flow

Flow control value increment.

Return value

The atom ok is returned.

Changelog

  • 2.0: Function introduced.

Examples

Update a stream’s flow control value
gun:update_flow(ConnPid, StreamRef, 10).

See also