Tags: fritzprix/yarmi
Tags
Merge pull request #57 from fritzprix/0.0.5-SNAPSHOT 0.0.5 snapshot
complete blob exchange feature - implemented blob exchange over dedicated session (BlobSession) which composed of simple message protocols below - ACK : indicate the receiver is ready to receive data - CHUNK : session message containing fixed size of byte array in it - RESET : sender closed the blobsession - BlobSession,itself, is not dependent upon derser in its lower layer though, one important assumption is introduced that is - deser MUST be able to handle byte array - JSON, the default deser, handle byte array with BASE64, however there is perf. degradation. - Concurrent requests are handled independently - multiple sessions or clients over a single connection is supported