Example usage for io.netty.util DefaultAttributeMap subclass-usage

List of usage examples for io.netty.util DefaultAttributeMap subclass-usage

Introduction

In this page you can find the example usage for io.netty.util DefaultAttributeMap subclass-usage.

Usage

From source file com.digitalpetri.opcua.stack.core.application.services.ServiceRequest.java

public class ServiceRequest<ReqT extends UaRequestMessage, ResT extends UaResponseMessage>
        extends DefaultAttributeMap {

    private final CompletableFuture<ResT> future = new CompletableFuture<>();

    private final ReqT request;

From source file com.digitalpetri.opcua.stack.core.channel.ClientSecureChannel.java

public class ClientSecureChannel extends DefaultAttributeMap implements SecureChannel {

    public static final AttributeKey<LongSequence> KEY_REQUEST_ID_SEQUENCE = AttributeKey
            .valueOf("request-id-sequence");

    private volatile Channel channel;

From source file com.digitalpetri.opcua.stack.core.channel.ServerSecureChannel.java

public class ServerSecureChannel extends DefaultAttributeMap implements SecureChannel {

    private volatile long channelId = 0;
    private volatile ChannelSecurity channelSecurity;
    private volatile ByteString localNonce = ByteString.NULL_VALUE;
    private volatile ByteString remoteNonce = ByteString.NULL_VALUE;

From source file com.linecorp.armeria.common.ServiceInvocationContext.java

/**
 * Provides information about an invocation and related utilities. Every remote invocation, regardless of if
 * it's client side or server side, has its own {@link ServiceInvocationContext} instance.
 */
public abstract class ServiceInvocationContext extends DefaultAttributeMap {

From source file org.eclipse.milo.opcua.stack.client.transport.uasc.ClientSecureChannel.java

public class ClientSecureChannel extends DefaultAttributeMap implements SecureChannel {

    public static final AttributeKey<LongSequence> KEY_REQUEST_ID_SEQUENCE = AttributeKey
            .valueOf("request-id-sequence");

    private volatile Channel channel;

From source file org.eclipse.milo.opcua.stack.core.application.services.ServiceRequest.java

public class ServiceRequest<ReqT extends UaRequestMessage, ResT extends UaResponseMessage>
        extends DefaultAttributeMap {

    private final CompletableFuture<ResT> future = new CompletableFuture<>();

    private final ReqT request;

From source file org.eclipse.milo.opcua.stack.core.channel.ClientSecureChannel.java

public class ClientSecureChannel extends DefaultAttributeMap implements SecureChannel {

    public static final AttributeKey<LongSequence> KEY_REQUEST_ID_SEQUENCE = AttributeKey
            .valueOf("request-id-sequence");

    private volatile Channel channel;

From source file org.eclipse.milo.opcua.stack.core.channel.ServerSecureChannel.java

public class ServerSecureChannel extends DefaultAttributeMap implements SecureChannel {

    private volatile long channelId = 0;
    private volatile ChannelSecurity channelSecurity;
    private volatile ByteString localNonce = ByteString.NULL_VALUE;
    private volatile ByteString remoteNonce = ByteString.NULL_VALUE;

From source file org.eclipse.milo.opcua.stack.server.services.ServiceRequest.java

public class ServiceRequest extends DefaultAttributeMap {

    private final CompletableFuture<UaResponseMessage> future = new CompletableFuture<>();

    private final UaStackServer server;
    private final UaRequestMessage request;