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

com.fireflysource.net.websocket.common.model.IncomingFrames Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.net.websocket.common.model;

import com.fireflysource.net.websocket.common.frame.Frame;

/**
 * Interface for dealing with Incoming Frames.
 */
public interface IncomingFrames {
    /**
     * Process the incoming frame.
     * 

* Note: if you need to hang onto any information from the frame, be sure * to copy it, as the information contained in the Frame will be released * and/or reused by the implementation. * * @param frame the frame to process */ void incomingFrame(Frame frame); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy