Hi,
the configuration options in Crossbar.io are for automatic fragmentation
of WebSocket messages.
However, a big WebSocket message, even when fragmented, will still
"head-of-line" block other WebSocket messages that come after.
This is how (plain) WebSocket works (nothing Crossbar.io specific).
Since WAMP messages are mapped 1:1 to WebSocket messages, a big WAMP RPC
return message will effectively hinder any other WAMP message (such as
eg an EVENT) to arrive at the client until the formter WAMP message has
been completely received.
And hence the progressive Call Results feature of WAMP.
It does not make sense IMO to do that inside a WAMP client library,
because imagine you want to send a 1GB file.
What a user probably wants to do is NOT read the 1GB into RAM to chunk
it, but read chunks directly from the file.
Or: imagine you have mmap'ed the file and want to get chunks from there.
etc etc
Cheers,
/Tobias