I'm trying to send Events to the Esper engine through sockets and ran into some problem.
i've configured the EsperIOSocketAdapter properties and when EsperIOSocketAdapter.start() method is invoked , it starts a new daemon thread which will listen for clients , but daemon thread exits as parent thread exits before a socket client actually tries to connect.
my code snippet is as follows:
ConfigurationSocketAdapter adapterConfig = new ConfigurationSocketAdapter();
SocketConfig socket = new SocketConfig();
socket.setDataType(DataType.CSV);
socket.setPort(6789);
adapterConfig.getSockets().put("CourseSocket", socket);
EsperIOSocketAdapter socketAdapter = new EsperIOSocketAdapter (adapterConfig, "CourseSocket");
socketAdapter.start();
Another doubt is in programs without using the SocketAdapter i used to send events through the code
EPRuntime.sendEvent(new TestEvent(event));
While using SocketAdapter, shoud i use sendEvent() or events will automatically pushed into the engine.