Manolo R.G. wrote:
Dan Rossi wrote:
  
          ((IServiceCapableConnection) conn).invoke("onBroadcast", new 
Object[]{streamName}, this);
    
Only a question: shouldn't you implement a 
resultReceived(IPendingServiceCall call) method since you call 
invoke(...) with 3 params (third is a callback)?

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

  
/**
     * Handle callback from service call.
     */
    public void resultReceived(IPendingServiceCall call) {
        log.info("Received result " + call.getResult() + " for " + call.getServiceMethodName());
    }

, im returning true from onBroadcast method, i guess its not needed.
_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to