org.smartboot.http.client.impl.WebSocketOutputStream Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2017-2021, org.smartboot. All rights reserved.
* project name: smart-http
* file name: HttpOutputStream.java
* Date: 2021-02-04
* Author: sandao ([email protected])
******************************************************************************/
package org.smartboot.http.client.impl;
import org.smartboot.socket.transport.AioSession;
/**
* @author 三刀
* @version V1.0 , 2018/2/3
*/
final class WebSocketOutputStream extends AbstractOutputStream {
public WebSocketOutputStream(WebSocketRequestImpl request, AioSession session) {
super(request, session);
}
}