예제 #1
0
파일: api_test.go 프로젝트: One-com/gonelog
func f(ctx context.Context, ok chan<- struct{}) {

	select {
	case <-ctx.Done():
		ctx.NOTICE("cancelled")
	}

	close(ok)
}
예제 #2
0
파일: api_test.go 프로젝트: One-com/gonelog
func g(ctx context.Context) {
	ctx.NOTICE("G", "a", "b")
}