All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xnio.channels.AssembledConnectedStreamChannel Maven / Gradle / Ivy

There is a newer version: 62
Show newest version
/*
 * JBoss, Home of Professional Open Source.
 *
 * Copyright 2012 Red Hat, Inc. and/or its affiliates, and individual
 * contributors as indicated by the @author tags.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.xnio.channels;

import java.net.SocketAddress;
import org.xnio.ChannelListener;

/**
 * A connected stream channel assembled from a stream source and stream sink.
 *
 * @author David M. Lloyd
 */
public class AssembledConnectedStreamChannel extends AssembledStreamChannel implements ConnectedStreamChannel {
    private final ConnectedChannel connection;

    /**
     * Construct a new instance.
     *
     * @param connection the connected channel
     * @param source the source
     * @param sink the sink
     */
    public AssembledConnectedStreamChannel(final ConnectedChannel connection, final StreamSourceChannel source, final StreamSinkChannel sink) {
        super(connection, source, sink);
        this.connection = connection;
    }

    /**
     * Construct a new instance.  At least one side must be connected.
     *
     * @param source the source
     * @param sink the sink
     */
    public AssembledConnectedStreamChannel(final StreamSourceChannel source, final StreamSinkChannel sink) {
        this(new AssembledConnectedChannel(source, sink), source, sink);
    }

    @SuppressWarnings("unchecked")
    public ChannelListener.Setter getCloseSetter() {
        return (ChannelListener.Setter) super.getCloseSetter();
    }

    @SuppressWarnings("unchecked")
    public ChannelListener.Setter getReadSetter() {
        return (ChannelListener.Setter) super.getReadSetter();
    }

    @SuppressWarnings("unchecked")
    public ChannelListener.Setter getWriteSetter() {
        return (ChannelListener.Setter) super.getWriteSetter();
    }

    public SocketAddress getPeerAddress() {
        return connection.getPeerAddress();
    }

    public  A getPeerAddress(final Class type) {
        return connection.getPeerAddress(type);
    }

    public SocketAddress getLocalAddress() {
        return connection.getLocalAddress();
    }

    public  A getLocalAddress(final Class type) {
        return connection.getLocalAddress(type);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy