Package com.Ostermiller.util

Examples of com.Ostermiller.util.CircularByteBuffer


        protected ThreadAccessRecorder threadAccessRecorder = new ThreadAccessRecorder();

        protected StreamSessionInputStream(int streamID, int bufferSize) {
            this.streamID = streamID;
            // +10 because it uses some space for internal markers
            this.buffer = new CircularByteBuffer(bufferSize + 10, true);

        }
View Full Code Here


        this.mode = Mode.LOCAL;

        OutputStream outVideo, outActivities, outStatistics, outError;
        InputStream inVideo, inActivities, inStatistics, inError;

        videoCirc = new CircularByteBuffer(LOCAL_VIDEO_BUFFER, true);
        activityCirc = new CircularByteBuffer(100 * 1024, true);
        staticticsCirc = new CircularByteBuffer(100 * 1024, true);
        errorCirc = new CircularByteBuffer(100 * 1024, true);

        outVideo = videoCirc.getOutputStream();
        inVideo = videoCirc.getInputStream();

        outActivities = activityCirc.getOutputStream();
View Full Code Here

TOP

Related Classes of com.Ostermiller.util.CircularByteBuffer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.