Package org.apache.catalina.tribes.test

Source Code of org.apache.catalina.tribes.test.AckProtocol

package org.apache.catalina.tribes.test;

import org.apache.catalina.tribes.io.XByteBuffer;
import org.apache.catalina.tribes.io.ClusterData;
public class AckProtocol {
    public byte[] processInput(XByteBuffer buf, int counter) throws Exception {
        ClusterData data = buf.extractPackage(true);
        System.out.println("Received:\n\tThread:"+Thread.currentThread().getName()+"\n\tCount:"+counter+"\n\tData:"+new String(data.getMessage().getBytes()));
        return org.apache.catalina.tribes.tcp.Constants.ACK_COMMAND;
    }

}
TOP

Related Classes of org.apache.catalina.tribes.test.AckProtocol

TOP
Copyright © 2018 www.massapi.com. 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.