| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
|
| 19 | |
|
| 20 | |
|
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
|
| 29 | 1 | package org.vostokframework.application.monitoring.monitors.dispatchers |
| 30 | |
{ |
| 31 | |
import org.as3utils.StringUtil; |
| 32 | |
import org.vostokframework.application.events.GlobalLoadingEvent; |
| 33 | |
import org.vostokframework.application.monitoring.LoadingMonitoring; |
| 34 | |
import org.vostokframework.application.monitoring.monitors.LoadingMonitorDispatcher; |
| 35 | |
|
| 36 | |
import flash.events.Event; |
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
public class GlobalLoadingMonitorDispatcher extends LoadingMonitorDispatcher |
| 44 | |
{ |
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
private var _loaderId:String; |
| 49 | |
private var _loaderLocale:String; |
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
public function GlobalLoadingMonitorDispatcher(loaderId:String, loaderLocale:String) |
| 55 | 1 | { |
| 56 | 1 | if (StringUtil.isBlank(loaderId)) throw new ArgumentError("Argument <loaderId> must not be null nor an empty String."); |
| 57 | 1 | if (StringUtil.isBlank(loaderLocale)) throw new ArgumentError("Argument <loaderLocale> must not be null nor an empty String."); |
| 58 | |
|
| 59 | 1 | _loaderId = loaderId; |
| 60 | 1 | _loaderLocale = loaderLocale; |
| 61 | 1 | } |
| 62 | |
|
| 63 | |
override public function dispatchCanceledEvent(monitoring:LoadingMonitoring):void |
| 64 | |
{ |
| 65 | 0 | dispatchEvent(createEvent(GlobalLoadingEvent.CANCELED, monitoring)); |
| 66 | 0 | } |
| 67 | |
|
| 68 | |
override public function dispatchCompleteEvent(monitoring:LoadingMonitoring, data:* = null):void |
| 69 | |
{ |
| 70 | 1 | data = null; |
| 71 | 1 | dispatchEvent(createEvent(GlobalLoadingEvent.COMPLETE, monitoring)); |
| 72 | 1 | } |
| 73 | |
|
| 74 | |
override public function dispatchOpenEvent(monitoring:LoadingMonitoring, data:* = null):void |
| 75 | |
{ |
| 76 | 1 | data = null; |
| 77 | 1 | dispatchEvent(createEvent(GlobalLoadingEvent.OPEN, monitoring)); |
| 78 | 1 | } |
| 79 | |
|
| 80 | |
override public function dispatchProgressEvent(monitoring:LoadingMonitoring):void |
| 81 | |
{ |
| 82 | 1 | dispatchEvent(createEvent(GlobalLoadingEvent.PROGRESS, monitoring)); |
| 83 | 1 | } |
| 84 | |
|
| 85 | |
override public function dispatchStoppedEvent(monitoring:LoadingMonitoring):void |
| 86 | |
{ |
| 87 | 0 | dispatchEvent(createEvent(GlobalLoadingEvent.STOPPED, monitoring)); |
| 88 | 0 | } |
| 89 | |
|
| 90 | |
override public function typeBelongs(type:String):Boolean |
| 91 | |
{ |
| 92 | 1 | return GlobalLoadingEvent.typeBelongs(type); |
| 93 | |
} |
| 94 | |
|
| 95 | |
protected function createEvent(type:String, monitoring:LoadingMonitoring):Event |
| 96 | |
{ |
| 97 | 1 | return new GlobalLoadingEvent(type, _loaderId, _loaderLocale, monitoring); |
| 98 | |
} |
| 99 | |
|
| 100 | |
} |
| 101 | |
|
| 102 | |
} |