标签:style http color io os 使用 ar for 数据
import "code.google.com/p/appengine-go/appengine"
appengine包提供Google App Engine的基本函数服务。
更多细节参见:https://developers.google.com/appengine/docs/go/
MutiError由批处理返回,包含每个条目的返回错误,错误一一对应与执行的条目,成功的条目对应的错误为nil。
type MultiError []error
func (m MultiError) Error() string
func IsCapabilityDisabled(err error) bool
返回错误是否是因为API调用被禁止导致。
func IsTimeoutError(err error) bool
返回错误是否是超时错误。
func IsOverQuota(err error) bool
返回错误是否是因为超出API服务的配额限制所导致。
type GeoPoint struct { Lat, Lng float64 }
GeoPoint代表一个位置,使用经度值和维度值表示。
func (g GeoPoint) Valid() bool
返回该位置是否合法,纬度值范围[-90, 90],经度值返回[-180, 180]。
type Context interface { // 将数据组织为字符串,并记录为Debug水平的日志 Debugf(format string, args ...interface{}) // 类似Debugf,记录为Info水平的日志 Infof(format string, args ...interface{}) // 类似Debugf,记录为Warning水平的日志 Warningf(format string, args ...interface{}) // 类似Debugf,记录为Error水平的日志 Errorf(format string, args ...interface{}) // 类似Debugf,记录为Critical水平的日志 Criticalf(format string, args ...interface{}) // 仅供内部使用 Call(service, method string, in, out appengine_internal.ProtoMessage, opts *appengine_internal.CallOptions) error // 仅供内部使用,请使用AppID代替 FullyQualifiedAppID() string // 仅供内部使用 Request() interface{} }
Context代表一个正在执行中的HTTP请求的上下文环境。
func NewContext(req *http.Request) Context
返回正在运行中的HTTP请求的Context,多次调用的返回值是相同的。
func Namespace(c Context, namespace string) (Context, error)
返回一个在指定的命名空间内运行的替代用Context 。
func Timeout(c Context, d time.Duration) Context
返回一个在指定的时间后超时的替代用Context。
type Certificate struct { KeyName string Data []byte // PEM编码X.509证书 }
Certificate代表一个app的公开证书。
func PublicCertificates(c Context) ([]Certificate, error)
检索app的公证书,用于核实SignBytes返回的签名。
func SignBytes(c Context, bytes []byte) (string, []byte, error)
使用你的app专有的一个私钥对数据进行签名。
func IsDevAppServer() bool
返回当前app是否运行在开发版本上。
func ServerSoftware() string
返回当前app的App Engine版本,生产版本形如"Google App Engine/X.Y.Z",开发版本形如"Development/X.Y"。
func VersionID(c Context) string
返回当前app的版本ID,格式为"X.Y",其中X是app.yaml指定的,而Y是在上传每次该版本app时累加的数字。
func AppID(c Context) string
返回当前app的AppID。
一般只返回ID(如"appid"),部署在自定义域名的会包含域名前缀(如"example.com:appid")。
func InstanceID() string
返回当前实例的一个基本独有的识别码。
func RequestID(c Context) string
返回当前请求的专有识别码。
func Datacenter() string
返回当前实例运作在数据中心的识别码。
func DefaultVersionHostname(c Context) string
返回当前app默认版本的标准主机名(形如 "my-app.appspot.com"),用于构造URL。
func ServiceAccount(c Context) (string, error)
返回一个代表服务帐户名的字符串,采用email地址格式(如 app_id@appspot.gserviceaccount.com)。
func ModuleName(c Context) string
返回当前实例的模块名。
func ModuleHostname(c Context, module, version, instance string) (string, error)
返回一个模块实例的主机名,module为空的话,使用当前实例的模块,version为空则使用当前实例的版本(如不合法则使用当前实例的默认版本),如果实例为空,函数返回负载平衡主机名。
func AccessToken(c Context, scopes ...string) (token string, expiry time.Time, err error)
生成一个代表当前app的服务帐户的指定作用域的Oauth2通行令牌,令牌会在时间超过expiry后过期。
func BackendHostname(c Context, name string, index int) string
返回指定后端的标准主机名。如果index为-1,函数返回端主的负载平衡后机名。
func BackendInstance(c Context) (name string, index int)
返回当前后端实例的名称和索引,如果不是后端实例,会返回"", -1。
type BlobKey string
BlobKey是blobstore的键的类型。定义在这里是为了避免blobstore和datastore的循环依赖。
标签:style http color io os 使用 ar for 数据
原文地址:http://my.oschina.net/u/593413/blog/313047