Changeset View
Changeset View
Standalone View
Standalone View
support/aphlict/client/src/AphlictMaster.as
| Show First 20 Lines • Show All 139 Lines • ▼ Show 20 Lines | private function didConnectSocket(event:Event):void { | ||||
| } | } | ||||
| if (phids.length) { | if (phids.length) { | ||||
| this.sendSubscribeCommand(phids); | this.sendSubscribeCommand(phids); | ||||
| } | } | ||||
| } | } | ||||
| private function didCloseSocket(event:Event):void { | private function didCloseSocket(event:Event):void { | ||||
| this.externalInvoke('close'); | this.setStatusOnClients('error', 'error.flash.disconnected'); | ||||
| } | } | ||||
| private function didIOErrorSocket(event:IOErrorEvent):void { | private function didIOErrorSocket(event:IOErrorEvent):void { | ||||
| this.externalInvoke('error', event.text); | this.externalInvoke('error', event.text); | ||||
| } | } | ||||
| private function didSecurityErrorSocket(event:SecurityErrorEvent):void { | private function didSecurityErrorSocket(event:SecurityErrorEvent):void { | ||||
| var text = event.text; | var text = event.text; | ||||
| ▲ Show 20 Lines • Show All 156 Lines • Show Last 20 Lines | |||||