| Package | com.addicted2flash.data.service |
| Interface | public interface IDataServiceGroupObserver |
| Property | Defined by | ||
|---|---|---|---|
| acceptedDataServiceGroupEvents : int [read-only]
Returns a bit pattern of
DataServiceEventTypes the
IDataServiceGroupObserver is interested in. | IDataServiceGroupObserver | ||
| Method | Defined by | ||
|---|---|---|---|
|
processDataServiceGroupEvent(type:int, group:IDataServiceGroup):void
This method is called whenever the
IDataServices notifyObservers() method was invoked. | IDataServiceGroupObserver | ||
| acceptedDataServiceGroupEvents | property |
acceptedDataServiceGroupEvents:int [read-only]
Returns a bit pattern of DataServiceEventTypes the
IDataServiceGroupObserver is interested in.
public function get acceptedDataServiceGroupEvents():int
See also
public function get acceptedDataServiceGroupEvents(): int
{
return DataServiceEventType.COMPLETE | DataServiceEventType.PROGRESS;
}
| processDataServiceGroupEvent | () | method |
public function processDataServiceGroupEvent(type:int, group:IDataServiceGroup):void
This method is called whenever the IDataServices notifyObservers() method was invoked.
type:int — type of event
|
|
group:IDataServiceGroup — IDataServiceGroup
|
See also