2016-02-02 19:29:08 +01:00
|
|
|
// Copyright 2015 Google Inc. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build !appengine
|
|
|
|
|
|
|
|
package appengine
|
|
|
|
|
2018-08-27 20:26:52 +02:00
|
|
|
import (
|
|
|
|
"golang.org/x/net/context"
|
2016-02-02 19:29:08 +01:00
|
|
|
|
2018-08-27 20:26:52 +02:00
|
|
|
"google.golang.org/appengine/internal"
|
|
|
|
)
|
2016-02-02 19:29:08 +01:00
|
|
|
|
2018-08-27 20:26:52 +02:00
|
|
|
// BackgroundContext returns a context not associated with a request.
|
|
|
|
// This should only be used when not servicing a request.
|
|
|
|
// This only works in App Engine "flexible environment".
|
|
|
|
func BackgroundContext() context.Context {
|
|
|
|
return internal.BackgroundContext()
|
2016-02-02 19:29:08 +01:00
|
|
|
}
|