Created
November 14, 2009 17:01
-
-
Save claus/234641 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:WindowedApplication | |
xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:mx="library://ns.adobe.com/flex/halo" | |
creationComplete="creationCompleteHandler(event)"> | |
<fx:Script> | |
<![CDATA[ | |
import com.codeazur.as3redis.*; | |
import com.codeazur.as3redis.events.*; | |
import mx.events.FlexEvent; | |
// Make changes here, if appropriate | |
protected static const REDIS_DOMAIN:String = "127.0.0.1"; | |
protected static const REDIS_PORT:int = 6379; | |
protected var redis:Redis; | |
protected function creationCompleteHandler(event:FlexEvent):void | |
{ | |
redis = new Redis(REDIS_DOMAIN, REDIS_PORT); | |
redis.sendMONITOR().addSimpleResponder( | |
function(cmd:RedisCommand):void { | |
redis.addEventListener(RedisMonitorDataEvent.MONITOR_DATA, monitorDataHandler); | |
} | |
); | |
} | |
protected function monitorDataHandler(event:RedisMonitorDataEvent):void { | |
messages.addItem({ label:event.command }); | |
} | |
]]> | |
</fx:Script> | |
<fx:Declarations> | |
<!-- Place non-visual elements (e.g., services, value objects) here --> | |
</fx:Declarations> | |
<s:List width="100%" height="100%"> | |
<s:dataProvider> | |
<s:ArrayList id="messages" /> | |
</s:dataProvider> | |
</s:List> | |
</s:WindowedApplication> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment