| Package | com.addicted2flash.util |
| Interface | public interface IMicroObservable extends IDisposable |
| Subinterfaces | IPerformanceObservable |
| Implementors | MicroObservable |
| Property | Defined by | ||
|---|---|---|---|
| isAvailable : Boolean [read-only]
Returns true if the value is available.
| IMicroObservable | ||
| microObserverAmount : int [read-only]
Returns the number of observers of this
IMicroObservable. | IMicroObservable | ||
| value : *
Returns the value of this
IMicroObserver. | IMicroObservable | ||
| Method | Defined by | ||
|---|---|---|---|
|
addMicroObserver(o:IMicroObserver):void
Adds an
IMicroObserver to the set of observers for this object, provided that it is not
the same as some observer already in the set
| IMicroObservable | ||
![]() |
dispose():void
free memory for garbage collection.
| IDisposable | |
|
removeMicroObserver(o:IMicroObserver):void
Deletes an
IMicroObserver from the set of observers of this object. | IMicroObservable | ||
|
removeMicroObservers():void
Clears the observer list so that this object no longer has any observers.
| IMicroObservable | ||
| isAvailable | property |
isAvailable:Boolean [read-only]Returns true if the value is available.
Implementation public function get isAvailable():Boolean
| microObserverAmount | property |
microObserverAmount:int [read-only]
Returns the number of observers of this IMicroObservable.
public function get microObserverAmount():int
| value | property |
value:* [read-write]
Returns the value of this IMicroObserver.
public function get value():*
public function set value(value:*):void
| addMicroObserver | () | method |
public function addMicroObserver(o:IMicroObserver):void
Adds an IMicroObserver to the set of observers for this object, provided that it is not
the same as some observer already in the set
o:IMicroObserver — an IMicroObserver to be added.
|
| removeMicroObserver | () | method |
public function removeMicroObserver(o:IMicroObserver):void
Deletes an IMicroObserver from the set of observers of this object.
Passing null to this method will have no effect.
o:IMicroObserver — the IMicroObserver to be deleted.
|
| removeMicroObservers | () | method |
public function removeMicroObservers():voidClears the observer list so that this object no longer has any observers.