aboutsummaryrefslogtreecommitdiff
path: root/example/http_server.go
blob: 36c93972a1a5b90cef1beeeed3810b96d4f7fdd3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// +build ignore

package main

import (
	"context"
	"io"
	"log"
	"net/http"
	"os"

	"go.neonxp.ru/rutina/v3"
)

func main() {
	// New instance with builtin context
	r := rutina.New(rutina.ListenOsSignals(os.Interrupt, os.Kill))

	srv := &http.Server{Addr: ":8080"}
	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
		io.WriteString(w, "hello world\n")
	})

	// Starting http server and listen connections
	r.Go(func(ctx context.Context) error {
		if err := srv.ListenAndServe(); err != nil {
			return err
		}
		log.Println("Server stopped")
		return nil
	})

	// Gracefully stopping server when context canceled
	r.Go(func(ctx context.Context) error {
		<-ctx.Done()
		log.Println("Stopping server...")
		return srv.Shutdown(ctx)
	})

	if err := r.Wait(); err != nil {
		log.Fatal(err)
	}
	log.Println("All routines successfully stopped")
}