package com.nokia.mid.s40.io;

import java.io.IOException;

public interface LocalMessageProtocolConnection extends LocalProtocolConnection
{

 public LocalMessageProtocolMessage newMessage(byte[]);
 
 public int receive(byte[]) throws IOException;
 
 public void receive(LocalMessageProtocolMessage) throws IOException;
 
 public void send(byte[], int, int) throws IOException;
 
}