gracefully

package module
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: May 25, 2019 License: Apache-2.0 Imports: 3 Imported by: 0

README

Gracefully Build Status GoDoc

go app gracefully shutdown utils. This project is split from k8s, I want to do some progress here.

Getting Started

var stopCh = gracefully.SetupSignalHandler()
go func() {
    for {
        log.Println("alive...")
        time.Sleep(1 * time.Second)
    }
}()
<-stopCh
log.Println("gracefully shutdown")
Installing
go get -u github.com/exfly/gracefully

Deployment

This project is forked form k8s.

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • exfly - Initial work - exfly

License

This project is licensed under the Apache v2 License - see the LICENSE.md file for details

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func RequestShutdown

func RequestShutdown() bool

RequestShutdown emulates a received event that is considered as shutdown signal (SIGTERM/SIGINT) This returns whether a handler was notified

func SetupSignalHandler

func SetupSignalHandler() <-chan struct{}

SetupSignalHandler registered for SIGTERM and SIGINT. A stop channel is returned which is closed on one of these signals. If a second signal is caught, the program is terminated with exit code 1.

Types

This section is empty.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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