appender.startExcerpt(message.length);
appender.write(message);
appender.finish();
--
You received this message because you are subscribed to the Google Groups "Chronicle" group.
To unsubscribe from this group and stop receiving emails from it, send an email to java-chronicl...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
The closest is the GWMain/PEMain demo. This doesn't have replication configured but that would not require a code change.
Peter.
Chronicle chronicle = ChronicleQueueBuilder .remoteAppender() .connectAddress("localhost", 1234) .appendRequireAck(true) .build();As far as I can see it blocks until ack received and there is no any timeout, right?