@UnstableApi
public interface Http2PromisedRequestVerifier
Modifier and Type | Field and Description |
---|---|
static Http2PromisedRequestVerifier |
ALWAYS_VERIFY
默认实现 Http2PromisedRequestVerifier ,它始终返回所有验证挑战的正面响应。
|
Modifier and Type | Method and Description |
---|---|
boolean |
isAuthoritative(ChannelHandlerContext ctx, Http2Headers headers)
确定是否 Http2Headers 权威性的特定ChannelHandlerContext 。
|
boolean |
isCacheable(Http2Headers headers)
确定请求是否可缓存。
|
boolean |
isSafe(Http2Headers headers)
确定请求是否安全。
|
static final Http2PromisedRequestVerifier ALWAYS_VERIFY
Http2PromisedRequestVerifier
,它始终返回所有验证挑战的正面响应。
boolean isAuthoritative(ChannelHandlerContext ctx, Http2Headers headers)
Http2Headers
是否对特定ChannelHandlerContext
具有权威性 。
ctx
- 收到的
headers
的上下文。
headers
- 要验证的标题。
true
如果
ctx
是权威为
headers
,
false
其他。
boolean isCacheable(Http2Headers headers)
headers
- 推送请求的标头。
true
如果与
headers
相关的请求已知可缓存,则
false
否则
false
。
boolean isSafe(Http2Headers headers)
headers
- 推送请求的标题。
true
如果与
headers
相关的请求已知是安全的,
false
否则。
Copyright © 2008–2018 The Netty Project. All rights reserved.