view src/com/trilead/ssh2/transport/MessageHandler.java @ 216:cd07c1648016
test buffer changed when 5250 keyboard unlocks
author |
Carl Byington <carl@five-ten-sg.com> |
date |
Tue, 08 Jul 2014 10:02:11 -0700 (2014-07-08) |
parents |
0ce5cc452d02 |
children |
|
line source
package com.trilead.ssh2.transport;
import java.io.IOException;
/**
* MessageHandler.
*
* @author Christian Plattner, plattner@trilead.com
* @version $Id: MessageHandler.java,v 1.1 2007/10/15 12:49:56 cplattne Exp $
*/
public interface MessageHandler {
public void handleMessage(byte[] msg, int msglen) throws IOException;
}