I'm trying to create a protocol with charm, and ran into some problems.
The recv_msg function in the Protocol class wasn't working, because unpickleObject didn't allow bytes objects. The other problem was that my messages were getting truncated at 2048, because of MAX_SIZE, and there was no way to tweak this variable from the child class since it was not part of the Protocol class.
Hi all,
I'm trying to create a protocol with charm, and ran into some problems. The recv_msg function in the Protocol class wasn't working, because unpickleObject didn't allow bytes objects. The other problem was that my messages were getting truncated at 2048, because of MAX_SIZE, and there was no way to tweak this variable from the child class since it was not part of the Protocol class.