capnproto-java icon indicating copy to clipboard operation
capnproto-java copied to clipboard

Cap'n Proto in pure Java

Results 41 capnproto-java issues
Sort by recently updated
recently updated
newest added

Better support for the builder pattern.

I would like to generically read messages from some unspecified `ReadableByteChannel`, because that's what `Serialize#read` and `SerializePacked#read` accept so I write ```java static void processMessages(ReadableByteChannel channel) { // Loop until...

Can we use the java capnproto implementation to efficiently write millions of records into a large binary file and then read those records back? Let's assume to simplify that only...

The capnpc-java binary should be installed in `libexec/` and not bin `bin/`, since it appears that this binary should not be invoked by the user, but only by the Cap'n...

Gentoo uses a staged install mechanism, and hence likes to have DESTDIR :)

Currently, capnpc-java is written in C++ and depends on upstream capnproto-c++ libraries. Distribution would be simplified it it were written in Java.

Hi, Im probably missing something, but im not sure i understand how random access of fields work in the java api (or in capnproto in general) lets say i have...

Since Java does not have unsigned primitive types the generated type for UInt8, UInt16, UInt32 must be short, int, long instead of byte, short, int. For UInt64 is no real...

This is a class of helper functions we use when serializing collections. It takes care of the index manipulation and assures the user that this is only serialization - not...

Generate AnyStruct and AnyList types.