golang.org/x/net/http2.Framer.WriteData (method)
6 uses
golang.org/x/net/http2 (current package)
frame.go#L642: func (f *Framer) WriteData(streamID uint32, endStream bool, data []byte) error {
transport.go#L1379: err = cc.fr.WriteData(cs.ID, sentEnd, data)
transport.go#L1427: err = cc.fr.WriteData(cs.ID, true, nil)
write.go#L109: return ctx.Framer().WriteData(w.streamID, w.endStream, w.p)
google.golang.org/grpc/internal/transport
controlbuf.go#L847: if err := l.framer.fr.WriteData(dataItem.streamID, dataItem.endStream, nil); err != nil {
controlbuf.go#L909: if err := l.framer.fr.WriteData(dataItem.streamID, endStream, buf[:size]); err != nil {
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |