FastCGI

public class FastCGI

The “root” class for the FastCGI server implementation. A FastCGIServer instance can be created.

Usage Example:

//Implement a `FastCGI` server.
let server = FastCGI.createServer()
  • Create a FastCGIServer instance. Provided as a convenience and for consistency with the HTTP implementation.

    Usage Example:

    let server = FastCGI.createServer()
    

    Declaration

    Swift

    public static func createServer() -> FastCGIServer

    Return Value

    A FastCGIServer instance.