You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some frameworks use java.io.DataOutput as output target. While it is possible to write a simple wrapper that implements InputStream over given DataOutput, it makes sense to:
Implement such wrapper internally, as baseline, for convenience; this will work for all backends
Also implement simple non-delegating version for backends for more efficient output
This should be doable for 2.8, esp. part (1).
The text was updated successfully, but these errors were encountered:
cowtowncoder
changed the title
(2.8) Add support for serializing using java.io.DataOutput
Add support for serializing using java.io.DataOutputMay 4, 2016
Some frameworks use
java.io.DataOutput
as output target. While it is possible to write a simple wrapper that implementsInputStream
over givenDataOutput
, it makes sense to:This should be doable for 2.8, esp. part (1).
The text was updated successfully, but these errors were encountered: