org.simpleframework.http.Request.getChannel()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(13.4k)|赞(0)|评价(0)|浏览(243)

本文整理了Java中org.simpleframework.http.Request.getChannel方法的一些代码示例,展示了Request.getChannel的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Request.getChannel方法的具体详情如下:
包路径:org.simpleframework.http.Request
类名称:Request
方法名:getChannel

Request.getChannel介绍

[英]This provides the underlying channel for the request. It contains the TCP socket channel and various other low level components. Typically this will only ever be needed when there is a need to switch protocols.
[中]这为请求提供了底层通道。它包含TCP套接字通道和各种其他低级组件。通常,只有在需要切换协议时才需要这样做。

代码示例

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This provides the underlying channel for the request. It
  3. * contains the TCP socket channel and various other low level
  4. * components. Typically this will only ever be needed when
  5. * there is a need to switch protocols.
  6. *
  7. * @return the underlying channel for this request
  8. */
  9. public Channel getChannel() {
  10. return request.getChannel();
  11. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This provides the underlying channel for the request. It
  3. * contains the TCP socket channel and various other low level
  4. * components. Typically this will only ever be needed when
  5. * there is a need to switch protocols.
  6. *
  7. * @return the underlying channel for this request
  8. */
  9. public Channel getChannel() {
  10. return request.getChannel();
  11. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>OutputBarrier</code> object. This
  3. * is used to ensure that if there is currently a blocking write
  4. * in place that the <code>SessionChecker</code> will not end up
  5. * being blocked if it attempts to send a control frame.
  6. *
  7. * @param request this is the request to get the TCP channel from
  8. * @param duration this is the length of time to wait for the lock
  9. */
  10. public OutputBarrier(Request request, long duration) {
  11. this.lock = new ReentrantLock();
  12. this.channel = request.getChannel();
  13. this.writer = channel.getWriter();
  14. this.duration = duration;
  15. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>OutputBarrier</code> object. This
  3. * is used to ensure that if there is currently a blocking write
  4. * in place that the <code>SessionChecker</code> will not end up
  5. * being blocked if it attempts to send a control frame.
  6. *
  7. * @param request this is the request to get the TCP channel from
  8. * @param duration this is the length of time to wait for the lock
  9. */
  10. public OutputBarrier(Request request, long duration) {
  11. this.lock = new ReentrantLock();
  12. this.channel = request.getChannel();
  13. this.writer = channel.getWriter();
  14. this.duration = duration;
  15. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>FrameEncoder</code> object. This is
  3. * used to create an encoder to sending frames over the provided
  4. * channel. Frames send remain unflushed so they can be batched
  5. * on a single output buffer.
  6. *
  7. * @param request contains the opening handshake information
  8. * @param charset this is the character encoding to encode with
  9. */
  10. public FrameEncoder(Request request, String charset) {
  11. this.barrier = new OutputBarrier(request, 5000);
  12. this.channel = request.getChannel();
  13. this.trace = channel.getTrace();
  14. this.charset = charset;
  15. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>FrameEncoder</code> object. This is
  3. * used to create an encoder to sending frames over the provided
  4. * channel. Frames send remain unflushed so they can be batched
  5. * on a single output buffer.
  6. *
  7. * @param request contains the opening handshake information
  8. * @param charset this is the character encoding to encode with
  9. */
  10. public FrameEncoder(Request request, String charset) {
  11. this.barrier = new OutputBarrier(request, 5000);
  12. this.channel = request.getChannel();
  13. this.trace = channel.getTrace();
  14. this.charset = charset;
  15. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>FrameCollector</code> object. This is
  3. * used to create a collector that will process and dispatch web
  4. * socket frames as defined by RFC 6455.
  5. *
  6. * @param encoder this is the encoder used to send messages
  7. * @param session this is the web socket session
  8. * @param channel this is the underlying TCP communication channel
  9. * @param reactor this is the reactor used for read notifications
  10. */
  11. public FrameCollector(FrameEncoder encoder, Session session, Request request, Reactor reactor) {
  12. this.processor = new FrameProcessor(encoder, session, request);
  13. this.channel = request.getChannel();
  14. this.cursor = channel.getCursor();
  15. this.trace = channel.getTrace();
  16. this.reactor = reactor;
  17. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>FrameCollector</code> object. This is
  3. * used to create a collector that will process and dispatch web
  4. * socket frames as defined by RFC 6455.
  5. *
  6. * @param encoder this is the encoder used to send messages
  7. * @param session this is the web socket session
  8. * @param channel this is the underlying TCP communication channel
  9. * @param reactor this is the reactor used for read notifications
  10. */
  11. public FrameCollector(FrameEncoder encoder, Session session, Request request, Reactor reactor) {
  12. this.processor = new FrameProcessor(encoder, session, request);
  13. this.channel = request.getChannel();
  14. this.cursor = channel.getCursor();
  15. this.trace = channel.getTrace();
  16. this.reactor = reactor;
  17. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>FrameProcessor</code> object. This is
  3. * used to create a processor that can consume and dispatch frames
  4. * as defined by RFC 6455 to a set of registered listeners.
  5. *
  6. * @param encoder this is the encoder used to send control frames
  7. * @param session this is the session associated with the channel
  8. * @param channel this is the channel to read frames from
  9. */
  10. public FrameProcessor(FrameEncoder encoder, Session session, Request request) {
  11. this.listeners = new CopyOnWriteArraySet<FrameListener>();
  12. this.normal = new Reason(NORMAL_CLOSURE);
  13. this.extractor = new ReasonExtractor();
  14. this.consumer = new FrameConsumer();
  15. this.closed = new AtomicBoolean();
  16. this.channel = request.getChannel();
  17. this.cursor = channel.getCursor();
  18. this.trace = channel.getTrace();
  19. this.encoder = encoder;
  20. this.session = session;
  21. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>FrameProcessor</code> object. This is
  3. * used to create a processor that can consume and dispatch frames
  4. * as defined by RFC 6455 to a set of registered listeners.
  5. *
  6. * @param encoder this is the encoder used to send control frames
  7. * @param session this is the session associated with the channel
  8. * @param channel this is the channel to read frames from
  9. */
  10. public FrameProcessor(FrameEncoder encoder, Session session, Request request) {
  11. this.listeners = new CopyOnWriteArraySet<FrameListener>();
  12. this.normal = new Reason(NORMAL_CLOSURE);
  13. this.extractor = new ReasonExtractor();
  14. this.consumer = new FrameConsumer();
  15. this.closed = new AtomicBoolean();
  16. this.channel = request.getChannel();
  17. this.cursor = channel.getCursor();
  18. this.trace = channel.getTrace();
  19. this.encoder = encoder;
  20. this.session = session;
  21. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>ResponseBuilder</code> object. In order
  3. * to process the WebSocket handshake this requires the original
  4. * request and the response as well as the underlying TCP channel
  5. * which forms the basis of the WebSocket connection.
  6. *
  7. * @param request this is the request that initiated the handshake
  8. * @param response this is the response for the handshake
  9. */
  10. public ResponseBuilder(Request request, Response response) throws Exception {
  11. this.validator = new RequestValidator(request);
  12. this.token = new AcceptToken(request);
  13. this.channel = request.getChannel();
  14. this.writer = channel.getWriter();
  15. this.trace = channel.getTrace();
  16. this.response = response;
  17. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>ResponseBuilder</code> object. In order
  3. * to process the WebSocket handshake this requires the original
  4. * request and the response as well as the underlying TCP channel
  5. * which forms the basis of the WebSocket connection.
  6. *
  7. * @param request this is the request that initiated the handshake
  8. * @param response this is the response for the handshake
  9. */
  10. public ResponseBuilder(Request request, Response response) throws Exception {
  11. this.validator = new RequestValidator(request);
  12. this.token = new AcceptToken(request);
  13. this.channel = request.getChannel();
  14. this.writer = channel.getWriter();
  15. this.trace = channel.getTrace();
  16. this.response = response;
  17. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>StatusChecker</code> object. This
  3. * is used to create a pinger that will send out ping frames at
  4. * a specified interval. If a session does not respond within
  5. * three times the duration of the ping the connection is reset.
  6. *
  7. * @param connection this is the WebSocket to send the frames
  8. * @param request this is the associated request
  9. * @param scheduler this is the scheduler used to execute this
  10. * @param frequency this is the frequency with which to ping
  11. */
  12. public StatusChecker(FrameConnection connection, Request request, Scheduler scheduler, long frequency) {
  13. this.listener = new StatusResultListener(this);
  14. this.error = new Reason(INTERNAL_SERVER_ERROR);
  15. this.normal = new Reason(NORMAL_CLOSURE);
  16. this.frame = new DataFrame(PING);
  17. this.counter = new AtomicLong();
  18. this.channel = request.getChannel();
  19. this.trace = channel.getTrace();
  20. this.connection = connection;
  21. this.scheduler = scheduler;
  22. this.frequency = frequency;
  23. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>StatusChecker</code> object. This
  3. * is used to create a pinger that will send out ping frames at
  4. * a specified interval. If a session does not respond within
  5. * three times the duration of the ping the connection is reset.
  6. *
  7. * @param connection this is the WebSocket to send the frames
  8. * @param request this is the associated request
  9. * @param scheduler this is the scheduler used to execute this
  10. * @param frequency this is the frequency with which to ping
  11. */
  12. public StatusChecker(FrameConnection connection, Request request, Scheduler scheduler, long frequency) {
  13. this.listener = new StatusResultListener(this);
  14. this.error = new Reason(INTERNAL_SERVER_ERROR);
  15. this.normal = new Reason(NORMAL_CLOSURE);
  16. this.frame = new DataFrame(PING);
  17. this.counter = new AtomicLong();
  18. this.channel = request.getChannel();
  19. this.trace = channel.getTrace();
  20. this.connection = connection;
  21. this.scheduler = scheduler;
  22. this.frequency = frequency;
  23. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This method is used to terminate the connection and commit the
  3. * response. Terminating the session before it has been dispatched
  4. * is done when there is a protocol or an unexpected I/O error with
  5. * the underlying TCP channel.
  6. *
  7. * @param request this is the session initiating request
  8. * @param response this is the session initiating response
  9. */
  10. public void terminate(Request request, Response response) {
  11. Channel channel = request.getChannel();
  12. Trace trace = channel.getTrace();
  13. try {
  14. response.close();
  15. channel.close();
  16. trace.trace(TERMINATE_SOCKET);
  17. } catch(Exception cause) {
  18. trace.trace(ERROR, cause);
  19. }
  20. }
  21. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This method is used to terminate the connection and commit the
  3. * response. Terminating the session before it has been dispatched
  4. * is done when there is a protocol or an unexpected I/O error with
  5. * the underlying TCP channel.
  6. *
  7. * @param request this is the session initiating request
  8. * @param response this is the session initiating response
  9. */
  10. public void terminate(Request request, Response response) {
  11. Channel channel = request.getChannel();
  12. Trace trace = channel.getTrace();
  13. try {
  14. response.close();
  15. channel.close();
  16. trace.trace(TERMINATE_SOCKET);
  17. } catch(Exception cause) {
  18. trace.trace(ERROR, cause);
  19. }
  20. }
  21. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * Constructor for the <code>FrameConnection</code> object. This is used
  3. * to create a channel that can read and write frames over a TCP
  4. * channel. For asynchronous read and dispatch operations this will
  5. * produce an operation to collect and process RFC 6455 frames.
  6. *
  7. * @param request this is the initiating request for the WebSocket
  8. * @param response this is the initiating response for the WebSocket
  9. * @param reactor this is the reactor used to process frames
  10. */
  11. public FrameConnection(Request request, Response response, Reactor reactor) {
  12. this.encoder = new FrameEncoder(request);
  13. this.session = new ServiceSession(this, request, response);
  14. this.operation = new FrameCollector(encoder, session, request, reactor);
  15. this.reason = new Reason(NORMAL_CLOSURE);
  16. this.channel = request.getChannel();
  17. this.writer = channel.getWriter();
  18. this.trace = channel.getTrace();
  19. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * Constructor for the <code>FrameConnection</code> object. This is used
  3. * to create a channel that can read and write frames over a TCP
  4. * channel. For asynchronous read and dispatch operations this will
  5. * produce an operation to collect and process RFC 6455 frames.
  6. *
  7. * @param request this is the initiating request for the WebSocket
  8. * @param response this is the initiating response for the WebSocket
  9. * @param reactor this is the reactor used to process frames
  10. */
  11. public FrameConnection(Request request, Response response, Reactor reactor) {
  12. this.encoder = new FrameEncoder(request);
  13. this.session = new ServiceSession(this, request, response);
  14. this.operation = new FrameCollector(encoder, session, request, reactor);
  15. this.reason = new Reason(NORMAL_CLOSURE);
  16. this.channel = request.getChannel();
  17. this.writer = channel.getWriter();
  18. this.trace = channel.getTrace();
  19. }

代码示例来源:origin: org.simpleframework/simple-http

  1. /**
  2. * This method is used to create a dispatch a <code>Session</code> to
  3. * a specific service selected by a router. If the session initiating
  4. * handshake fails for any reason this will close the underlying TCP
  5. * connection and send a HTTP 400 response back to the client.
  6. *
  7. * @param request this is the session initiating request
  8. * @param response this is the session initiating response
  9. */
  10. public void dispatch(Request request, Response response) {
  11. Channel channel = request.getChannel();
  12. Trace trace = channel.getTrace();
  13. try {
  14. Service service = router.route(request, response);
  15. Session session = builder.create(request, response);
  16. trace.trace(DISPATCH_SOCKET);
  17. service.connect(session);
  18. } catch(Exception cause) {
  19. trace.trace(ERROR, cause);
  20. terminate(request, response);
  21. }
  22. }

代码示例来源:origin: ngallagher/simpleframework

  1. /**
  2. * This method is used to create a dispatch a <code>Session</code> to
  3. * a specific service selected by a router. If the session initiating
  4. * handshake fails for any reason this will close the underlying TCP
  5. * connection and send a HTTP 400 response back to the client.
  6. *
  7. * @param request this is the session initiating request
  8. * @param response this is the session initiating response
  9. */
  10. public void dispatch(Request request, Response response) {
  11. Channel channel = request.getChannel();
  12. Trace trace = channel.getTrace();
  13. try {
  14. Service service = router.route(request, response);
  15. Session session = builder.create(request, response);
  16. trace.trace(DISPATCH_SOCKET);
  17. service.connect(session);
  18. } catch(Exception cause) {
  19. trace.trace(ERROR, cause);
  20. terminate(request, response);
  21. }
  22. }

相关文章