Simple OperationRequest

Options
kblanch09
edited September 2014 in Native
What is the format for a simple operation request using a hashtable in the Windows C++ SDK? Most all of the examples I have found only use events.

Comments

  • Kaiserludi
    Options
    I am not sure what you want to know. Client's can't send events. Only the server can do that. Everything that the clients send are operation requests. Even opRaiseEvent() sends an operation request to the server asking the server to send events with the specified content to the specified receivers. Do you want to send a custom operation to the server through opCustom()? In that case I would recommend to have a look at Client.cpp in the LoadBalancing project. It's implementing lots of different operations that you can use as examples on how to implement your own ones.
  • Thanks! Yeah I was looking for the opCustom format as opposed to the raiseEvent format.