What is the best way to implement async json socket communication between Flex client and custom server?
Is there a library that can listen to socket and fire event when complete json message/object is raceived?
EDIT: I know that I can use Socket and listen to SOCKET_DATA event, but that triggers event whenever new data is received, while I need to be notified only when (complete) jton object is received.
I was hoping for something more automatic :)