io.netty.handler.codec.Headers Java Examples

The following examples show how to use io.netty.handler.codec.Headers. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CombinedHttpHeaders.java    From netty-4.1.22 with Apache License 2.0 5 votes vote down vote up
@Override
public CombinedHttpHeadersImpl set(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    if (headers == this) {
        return this;
    }
    clear();
    return add(headers);
}
 
Example #2
Source File: CombinedHttpHeaders.java    From netty-4.1.22 with Apache License 2.0 5 votes vote down vote up
@Override
public CombinedHttpHeadersImpl setAll(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    if (headers == this) {
        return this;
    }
    for (CharSequence key : headers.names()) {
        remove(key);
    }
    return add(headers);
}
 
Example #3
Source File: AbstractHttp2Headers.java    From grpc-nebula-java with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers add(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
  throw new UnsupportedOperationException();
}
 
Example #4
Source File: AbstractHttp2Headers.java    From grpc-nebula-java with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers set(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
  throw new UnsupportedOperationException();
}
 
Example #5
Source File: AbstractHttp2Headers.java    From grpc-nebula-java with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers setAll(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
  throw new UnsupportedOperationException();
}
 
Example #6
Source File: HeadersBenchmark.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
private SlowHeaders(Headers<CharSequence, CharSequence, ? extends Headers<?, ?, ?>> delegate) {
    this.delegate = delegate;
}
 
Example #7
Source File: HeadersBenchmark.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
@Override
public SlowHeaders add(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    delegate.add(headers);
    return this;
}
 
Example #8
Source File: HeadersBenchmark.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
@Override
public SlowHeaders set(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    delegate.set(headers);
    return this;
}
 
Example #9
Source File: HeadersBenchmark.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
@Override
public SlowHeaders setAll(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    delegate.setAll(headers);
    return this;
}
 
Example #10
Source File: ReadOnlyHttp2Headers.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers add(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    throw new UnsupportedOperationException("read only");
}
 
Example #11
Source File: ReadOnlyHttp2Headers.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers set(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    throw new UnsupportedOperationException("read only");
}
 
Example #12
Source File: ReadOnlyHttp2Headers.java    From netty-4.1.22 with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers setAll(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
    throw new UnsupportedOperationException("read only");
}
 
Example #13
Source File: AbstractHttp2Headers.java    From grpc-java with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers add(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
  throw new UnsupportedOperationException();
}
 
Example #14
Source File: AbstractHttp2Headers.java    From grpc-java with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers set(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
  throw new UnsupportedOperationException();
}
 
Example #15
Source File: AbstractHttp2Headers.java    From grpc-java with Apache License 2.0 4 votes vote down vote up
@Override
public Http2Headers setAll(Headers<? extends CharSequence, ? extends CharSequence, ?> headers) {
  throw new UnsupportedOperationException();
}