Forum Topic - Is a context valid after replying?:
   
Is a context valid after replying?  
I'm using a resource manager implemented with a threadpool/dispatch interface.  When a message is received the dispatch 
interface calls my handler function providing a message context containing a pointer to the data.  Is this data pointer 
valid after a MsgReply is performed on the receive ID?  If so, then I assume the pointer remains valid until the 
callback returns?
Re: Is a context valid after replying?  
Yes, the context remains valid except for _msg_info member becomes meaningless.
Re: Is a context valid after replying?  
Thanks for the clarification.