Package com.wolfram.jlink
Class PacketPrinter
- java.lang.Object
-
- com.wolfram.jlink.PacketPrinter
-
- All Implemented Interfaces:
PacketListener
,java.util.EventListener
public class PacketPrinter extends java.lang.Object implements PacketListener
PacketPrinter is an implementation of the PacketListener interface that prints the contents of incoming packets to a stream that you specify.PacketPrinter is useful for debugging, when you want to see exactly what Mathematica is sending you. Here is how you might use it:
// ml is a KernelLink PacketListener stdoutPrinter = new PacketPrinter(System.out); ml.addPacketListener(stdoutPrinter);
After the execution of the above code, the contents of all packets that arrive during calls to the KernelLink methods waitForAnswer(), discardAnswer(), or any of the "evaluateTo" set will be printed to System.out. No matter how many PacketListeners are registered, their monitoring of incoming packets will never interfere with any other packet-handling code in your program, so you can turn on and off this full packet tracing by just adding or removing the two lines above. No other changes whatsoever are required to your program.- See Also:
PacketListener
,PacketArrivedEvent
,KernelLink
-
-
Constructor Summary
Constructors Constructor Description PacketPrinter()
Prints packets to System.out.PacketPrinter(java.io.PrintStream strm)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
packetArrived(PacketArrivedEvent evt)
Invoked when a packet arrives on the link.
-
-
-
Method Detail
-
packetArrived
public boolean packetArrived(PacketArrivedEvent evt) throws MathLinkException
Invoked when a packet arrives on the link.- Specified by:
packetArrived
in interfacePacketListener
- Parameters:
evt
- the PacketArrivedEvent- Returns:
- true
- Throws:
MathLinkException
-
-