Questions tagged [chronicle-wire]
17 questions
0
votes
2 answers
Chronicle Queue - readDocument().isPresent() returning false when values are present
I have modified the basic code here [github]https://github.com/OpenHFT/Chronicle-Queue/blob/master/docs/How_it_works.adoc
Basically I am shooting chronicle queue some of the same Marshallable-ized objects. I included some print statements to show…

InspectorNel
- 47
- 5
0
votes
1 answer
How to read data serialized with Chronicle Wire from InputStream?
Some data are serialized to an outputstream via Chronicle Wire.
Object m = ... ;
OutputStream out = ... ;
WireType.RAW //
.apply(Bytes.elasticByteBuffer()) //
.getValueOut().object(m) //
…

Stephan
- 41,764
- 65
- 238
- 329