Hi all,

The forementioned service supports calling the server via a precreated
IServiceCall and a method name. Id like to propse changes to the 'by
method name' versions:


        /**
         * Invoke method by name
         * @param method     Called method name
         */
        IServiceCall invoke(String method);

        /**
         * Invoke method by name with callback
         * @param method     Called method name
         * @param callback   Callback
         */
        IServiceCall invoke(String method, IPendingServiceCallback
callback);

        /**
         * Invoke method with parameters
         * @param method     Method name
         * @param Params     Invocation parameters passed to method
         */
        IServiceCall invoke(String method, ArrayList Params);

        /**
         *
         * @param method
         * @param Params
         * @param callback
         */
        IServiceCall invoke(String method, ArrayList Params,
IPendingServiceCallback callback);

Instread of 'void', the actual instantiated call could be returned. I
need this functionality for an extension to the RTMPClient class.

This will also require small changes to the RTMPConnection class.

Please let me know what you think.

/Rob

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to