>백엔드 개발 >Golang >Go에서 요청 취소를 확실하게 확인하는 방법은 무엇입니까?

Go에서 요청 취소를 확실하게 확인하는 방법은 무엇입니까?

Susan Sarandon
Susan Sarandon원래의
2024-11-08 17:29:01804검색

How to Reliably Check for Request Cancellation in Go?

요청 취소 확인 방법

Go에서 프로그래머는 요청이 취소되었는지 확인해야 하는 시나리오에 직면할 수 있습니다. 그러나 Go 1.9 이하에서 == context.Canceled 비교를 사용하면 예상치 못한 결과가 나올 수 있습니다.

요청 취소를 정확하게 확인하려면 다음 접근 방식을 고려하세요.

1. context.Canceled 오류 객체 활용:

Go 1.13 이상에서는 context.Canceled 오류 객체가 취소를 확인하는 편리한 방법을 제공합니다. 컨텍스트가 취소되면 해당 컨텍스트에 대해 수행된 모든 작업이 이 오류를 반환합니다. 다음 코드는 사용법을 보여줍니다.

// Create a context that is already canceled
ctx, cancel := context.WithCancel(context.Background())
cancel()

// Create the request with it and perform an operation
r, _ := http.NewRequestWithContext(ctx, "GET", "http://example.com", nil)
_, err := http.DefaultClient.Do(r)

// Check if the error matches context.Canceled
if err == context.Canceled {
    // Request was canceled
}

2. error.Is 함수 사용:

1.13 이전의 Go 버전을 지원해야 하는 경우 오류를 사용할 수 있습니다.Is 함수를 사용하여 중첩된 context.Canceled 오류를 확인할 수 있습니다. error.Is를 사용하면 기본 오류 체인을 검사하고 지정된 오류 유형과 일치하는 오류가 있는지 확인할 수 있습니다.

// Create a context that is already canceled
ctx, cancel := context.WithCancel(context.Background())
cancel()

// Create the request with it and perform an operation
r, _ := http.NewRequestWithContext(ctx, "GET", "http://example.com", nil)
_, err := http.DefaultClient.Do(r)

// Check if the error chain contains context.Canceled
if errors.Is(err, context.Canceled) {
    // Request was canceled
}

위 내용은 Go에서 요청 취소를 확실하게 확인하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.