当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


GO WithDeadline用法及代码示例


GO语言"context"包中"WithDeadline"函数的用法及代码示例。

用法:

func WithDeadline(parent Context, d time.Time)(Context, CancelFunc)

WithDeadline 返回父上下文的副本,截止日期调整为不迟于 d。如果父节点的截止日期已经早于 d,WithDeadline(parent, d) 在语义上等价于父节点。返回的上下文的 Done 通道在截止日期到期、调用返回的取消函数或父上下文的 Done 通道关闭时关闭,以先发生者为准。

取消此上下文会释放与其关联的资源,因此代码应在此上下文中运行的操作完成后立即调用取消。

例子:

这个例子传递了一个带有任意截止日期的上下文来告诉一个阻塞函数它应该在它到达它时立即放弃它的工作。

package main

import (
	"context"
	"fmt"
	"time"
)

const shortDuration = 1 * time.Millisecond

func main() {
	d := time.Now().Add(shortDuration)
	ctx, cancel := context.WithDeadline(context.Background(), d)

	// Even though ctx will be expired, it is good practice to call its
	// cancellation function in any case. Failure to do so may keep the
	// context and its parent alive longer than necessary.
	defer cancel()

	select {
	case <-time.After(1 * time.Second):
		fmt.Println("overslept")
	case <-ctx.Done():
		fmt.Println(ctx.Err())
	}

}

输出:

context deadline exceeded

相关用法


注:本文由纯净天空筛选整理自golang.google.cn大神的英文原创作品 WithDeadline。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。