server

package
v0.0.0-...-ac43226 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 20, 2020 License: BSD-3-Clause Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Options

type Options struct {
	Addr   string
	Logger logging.Logger
}

Options are the Server options.

type Server

type Server struct {
	// contains filtered or unexported fields
}

Server wraps a HTTP server implementation, implementing the server package interface.

func New

func New(opts Options) *Server

New creates and instantiates a new Server

func (*Server) Address

func (s *Server) Address() string

Address is the configured address the HTTP server will listen on.

func (*Server) Close

func (s *Server) Close() error

Close immediately closes any open connections and termintates the server. For a graceful server shutdown, use Shutdown.

func (*Server) Serve

func (s *Server) Serve() error

Serve will start the HTTP server implementation.

func (*Server) Shutdown

func (s *Server) Shutdown(ctx context.Context) error

Shutdown will gracefully shut down the server without interrupting any active connections.

type Service

type Service interface {
	Address() string
	Serve() error
	Close() error
	Shutdown(ctx context.Context) error
}

Service is the interface for the server package.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL