use of org.ballerinalang.nativeimpl.io.events.EventResult in project ballerina by ballerina-lang.
the class AsyncReadWriteTest method writeRecords.
@Test(description = "Test which will write records to a channel using async io framework")
public void writeRecords() throws IOException, ExecutionException, InterruptedException {
// Number of characters in this file would be 6
ByteChannel byteChannel = TestUtil.openForWriting(currentDirectoryPath + "records.csv");
Channel channel = new MockByteChannel(byteChannel);
CharacterChannel characterChannel = new CharacterChannel(channel, StandardCharsets.UTF_8.name());
DelimitedRecordChannel recordChannel = new DelimitedRecordChannel(characterChannel, "\n", ",");
String[] recordOne = { "Foo", "Bar", "911" };
BStringArray recordOneArr = new BStringArray(recordOne);
DelimitedRecordWriteEvent recordWriteEvent = new DelimitedRecordWriteEvent(recordChannel, recordOneArr);
Future<EventResult> future = eventManager.publish(recordWriteEvent);
future.get();
String[] recordTwo = { "Jim", "Com", "119" };
BStringArray recordTwoArr = new BStringArray(recordTwo);
recordWriteEvent = new DelimitedRecordWriteEvent(recordChannel, recordTwoArr);
future = eventManager.publish(recordWriteEvent);
future.get();
recordChannel.close();
}
use of org.ballerinalang.nativeimpl.io.events.EventResult in project ballerina by ballerina-lang.
the class HasNextTextRecord method execute.
/**
* {@inheritDoc}
*/
@Override
public void execute(Context context, CallableUnitCallback callback) {
BStruct channel = (BStruct) context.getRefArgument(TXT_RECORD_CHANNEL_INDEX);
if (channel.getNativeData(IOConstants.TXT_RECORD_CHANNEL_NAME) != null) {
DelimitedRecordChannel textRecordChannel = (DelimitedRecordChannel) channel.getNativeData(IOConstants.TXT_RECORD_CHANNEL_NAME);
EventContext eventContext = new EventContext(context, callback);
HasNextDelimitedRecordEvent hasNextEvent = new HasNextDelimitedRecordEvent(textRecordChannel, eventContext);
CompletableFuture<EventResult> event = EventManager.getInstance().publish(hasNextEvent);
event.thenApply(HasNextTextRecord::response);
}
}
Aggregations