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

org.eclipse.jetty.websocket.common.extensions.mux.MuxedFrame Maven / Gradle / Ivy

There is a newer version: 1.0.b11
Show newest version
//
//  ========================================================================
//  Copyright (c) 1995-2013 Mort Bay Consulting Pty. Ltd.
//  ------------------------------------------------------------------------
//  All rights reserved. This program and the accompanying materials
//  are made available under the terms of the Eclipse Public License v1.0
//  and Apache License v2.0 which accompanies this distribution.
//
//      The Eclipse Public License is available at
//      http://www.eclipse.org/legal/epl-v10.html
//
//      The Apache License v2.0 is available at
//      http://www.opensource.org/licenses/apache2.0.php
//
//  You may elect to redistribute this code under either of these licenses.
//  ========================================================================
//

package org.eclipse.jetty.websocket.common.extensions.mux;

import org.eclipse.jetty.websocket.common.OpCode;
import org.eclipse.jetty.websocket.common.WebSocketFrame;

public class MuxedFrame extends WebSocketFrame
{
    private long channelId = -1;

    public MuxedFrame()
    {
        super();
    }

    public MuxedFrame(MuxedFrame frame)
    {
        super(frame);
        this.channelId = frame.channelId;
    }

    public long getChannelId()
    {
        return channelId;
    }

    @Override
    public void reset()
    {
        super.reset();
        this.channelId = -1;
    }

    public void setChannelId(long channelId)
    {
        this.channelId = channelId;
    }

    @Override
    public String toString()
    {
        StringBuilder b = new StringBuilder();
        b.append(OpCode.name(getOpCode()));
        b.append('[');
        b.append("channel=").append(channelId);
        b.append(",len=").append(getPayloadLength());
        b.append(",fin=").append(isFin());
        b.append(",rsv=");
        b.append(isRsv1()?'1':'.');
        b.append(isRsv2()?'1':'.');
        b.append(isRsv3()?'1':'.');
        b.append(",continuation=").append(isContinuation());
        b.append(']');
        return b.toString();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy