Packagecom.addicted2flash.data.service
Interfacepublic interface IDataServiceGroupObserver

Interface for all objects that are interested in data service group events.



Public Properties
 PropertyDefined by
  acceptedDataServiceGroupEvents : int
[read-only] Returns a bit pattern of DataServiceEventTypes the IDataServiceGroupObserver is interested in.
IDataServiceGroupObserver
Public Methods
 MethodDefined by
  
This method is called whenever the IDataServices notifyObservers() method was invoked.
IDataServiceGroupObserver
Property detail
acceptedDataServiceGroupEventsproperty
acceptedDataServiceGroupEvents:int  [read-only]

Returns a bit pattern of DataServiceEventTypes the IDataServiceGroupObserver is interested in.

Implementation
    public function get acceptedDataServiceGroupEvents():int

See also

LoaderServiceEventType

Example
event types can be added by a bit-or
   public function get acceptedDataServiceGroupEvents(): int
   {
     return DataServiceEventType.COMPLETE | DataServiceEventType.PROGRESS;
   }
   

Method detail
processDataServiceGroupEvent()method
public function processDataServiceGroupEvent(type:int, group:IDataServiceGroup):void

This method is called whenever the IDataServices notifyObservers() method was invoked.

Parameters
type:int — type of event
 
group:IDataServiceGroupIDataServiceGroup

See also

DataServiceEventType