/* * 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 <a href="mailto:david.lloyd@redhat.com">David M. Lloyd</a> */ 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<? extends AssembledConnectedStreamChannel> getCloseSetter() { return (ChannelListener.Setter<? extends AssembledConnectedStreamChannel>) super.getCloseSetter(); } @SuppressWarnings("unchecked") public ChannelListener.Setter<? extends AssembledConnectedStreamChannel> getReadSetter() { return (ChannelListener.Setter<? extends AssembledConnectedStreamChannel>) super.getReadSetter(); } @SuppressWarnings("unchecked") public ChannelListener.Setter<? extends AssembledConnectedStreamChannel> getWriteSetter() { return (ChannelListener.Setter<? extends AssembledConnectedStreamChannel>) super.getWriteSetter(); } public SocketAddress getPeerAddress() { return connection.getPeerAddress(); } public <A extends SocketAddress> A getPeerAddress(final Class<A> type) { return connection.getPeerAddress(type); } public SocketAddress getLocalAddress() { return connection.getLocalAddress(); } public <A extends SocketAddress> A getLocalAddress(final Class<A> type) { return connection.getLocalAddress(type); } }