MCPcopy
hub / github.com/tornadoweb/tornado / transform_first_chunk

Method transform_first_chunk

tornado/web.py:3275–3282  ·  view source on GitHub ↗
(
        self,
        status_code: int,
        headers: httputil.HTTPHeaders,
        chunk: bytes,
        finishing: bool,
    )

Source from the content-addressed store, hash-verified

3273 pass
3274
3275 def transform_first_chunk(
3276 self,
3277 status_code: int,
3278 headers: httputil.HTTPHeaders,
3279 chunk: bytes,
3280 finishing: bool,
3281 ) -> Tuple[int, httputil.HTTPHeaders, bytes]:
3282 return status_code, headers, chunk
3283
3284 def transform_chunk(self, chunk: bytes, finishing: bool) -> bytes:
3285 return chunk

Callers 1

flushMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected