Skip to content

Instantly share code, notes, and snippets.

@claus
Created November 14, 2009 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save claus/234641 to your computer and use it in GitHub Desktop.
Save claus/234641 to your computer and use it in GitHub Desktop.
<?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