Retrieving Protocol Message Flows

Once a client adapter is configured to use a protocol message flow, the protocol message flow and its entry point can be accessed by using the FlowProxy interface returned by ClientAdapter::get{Recv,Send}FlowProxy.

interface FlowProxy
{
        [ const ]
        OSAStreams::Module getEntryPoint();
};

The FlowProxy interface is configured via the FlowProxyConfig interface.

interface FlowProxyConfig
{
        attribute string        name;
        attribute string        flowName;
        attribute string        entryPointName;

        key KeyName { name };
};