view src/main/java/alice/daemon/IncomingUdpConnection.java @ 361:60eee1fb0fd3 multicast

create sender with udp
author sugi
date Thu, 15 May 2014 18:29:30 +0900
parents
children 1494d44392a2
line wrap: on
line source

package alice.daemon;

import org.msgpack.unpacker.Unpacker;

import alice.codesegment.SingletonMessage;

public class IncomingUdpConnection extends IncomingTcpConnection {
	public MulticastConnection mConnection;

	public IncomingUdpConnection(MulticastConnection mc) {
		super(null, null, "multicast");
		mConnection = mc;
	}
	
	private Unpacker getUnpacker() {
		//Unpacker unpacker = SingletonMessage.getInstance().createUnpacker(); 
		return null;
		
	}
}