iris/graceful
2016-06-14 08:45:40 +03:00
..
graceful.go Update to 3.0.0-rc.1 - Read the HISTORY.md. Relative: #183 #184 #166 #176 #181 2016-06-14 08:45:40 +03:00
README.md Version 3.0.0-beta cleaned 2016-05-30 17:08:09 +03:00

Package information

Enables graceful shutdown.

Usage

package main

import (
    "github.com/kataras/iris/graceful"
    "github.com/kataras/iris"
    "time"
)

func main() {
    api := iris.New()
    api.Get("/", func(c *iris.Context) {
        c.Write("Welcome to the home page!")
    })

    graceful.Run(":3001", time.Duration(10)*time.Second, api)
}