Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ResponseController (0.27 sec)

  1. src/net/http/responsecontroller.go

    package http
    
    import (
    	"bufio"
    	"fmt"
    	"net"
    	"time"
    )
    
    // A ResponseController is used by an HTTP handler to control the response.
    //
    // A ResponseController may not be used after the [Handler.ServeHTTP] method has returned.
    type ResponseController struct {
    	rw ResponseWriter
    }
    
    // NewResponseController creates a [ResponseController] for a request.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top