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

hprose.server.TcpContext Maven / Gradle / Ivy

/**********************************************************\
|                                                          |
|                          hprose                          |
|                                                          |
| Official WebSite: http://www.hprose.com/                 |
|                   http://www.hprose.org/                 |
|                                                          |
\**********************************************************/
/**********************************************************\
 *                                                        *
 * TcpContext.java                                        *
 *                                                        *
 * tcp context class for Java.                            *
 *                                                        *
 * LastModified: Apr 26, 2016                             *
 * Author: Ma Bingyao                   *
 *                                                        *
\**********************************************************/
package hprose.server;

import java.net.Socket;
import java.nio.channels.SocketChannel;

public class TcpContext extends ServiceContext {
    private final SocketChannel socketChannel;
    public TcpContext(HproseClients clients,
                      SocketChannel socketChannel) {
        super(clients);
        this.socketChannel = socketChannel;
    }

    public SocketChannel getSocketChannel() {
        return socketChannel;
    }

    public Socket getSocket() {
        return socketChannel.socket();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy