Skip to content

Lightstreamer/Lightstreamer-example-AMFHelloWorld-client-flex

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
src
 
 
 
 
 
 
 
 

Lightstreamer - "Hello World" Tutorial - Flex (AMF) Client

This project, of the "Hello World with Lightstreamer" series, will focus on a new feature that was released with Lightstreamer Server since version 3.6: Action Message Format (AMF) support for Flex applications.

Details

As an example of an adapter used by this client, you may refer to the "Hello World" Tutorial - Java SE (AMF) Adapter.

First, a quick recap of the previous installments:

Basically, Lightstreamer Server can be seen as a "technology hub" for data push, where you can mix different technologies on the client-side and on the server-side to exchange real-time messages.
Schema

We will delve into the "Flex on the client-side, Java on the server-side" scenario and, in this project, full details for the client-side will be provided.

In particular, it will be shown you how to push binary ActionScript objects directly to your Flex application in real-time, using AMF. Action Message Format is used for serializing binary ActionScript objects to transmit them over the wire.

As you may recall from the first installment, Lightstreamer data push model is based on items made up of fields. A client can subscribe to many items, each with its own schema (a set of fields). Each field is usually a text string with an arbitrary length (from a few characters to large data structures, perhaps based on XML, JSON, etc.). With this new Lightstreamer feature, you can now put a full AMF object into any field and have it pushed from the server to the client in real binary format (with no re-encodings).

The Flex Client library for Lightstreamer has been used for one of the major dealing platforms in the finance field and has undergone many cycles of improvements to make it completely production resilient. We were asked to add native support for AMF objects to improve the performance when streaming complex data structures. So now you can push both text-based items and object-based items to the same Flex application.

When approaching the Lightstreamer data model, it is important to choose the right trade-off between using fine-grained fields and coarse objects. You could map each individual atomic piece of information to a Lightstreamer field, thus using many fields and items, or you could map all your data to a single field of a single item. This applies to both text-based fields (where you can encode coarse objects via JSON, XML, etc.) and object-based fields (via AMF). Usually, going for fine-grained fields is better, because you let Lightstreamer know more about your data structure, so that it will be able to apply optimization mechanisms, like conflation and delta delivery. On the other hand, if you go for huge opaque objects, Lightstreamer will be used more as a blind pipe. But in both cases, you will still benefit from other features, like bandwidth allocation and dynamic throttling. All intermediate scenarios are possible, too.

In the sections below, it will be used a single field containing an AMF object derived from a JavaBean. To encode a JavaBean as an AMF object, several ready-made libraries exist. Here, we will leverage BlazeDS.

AMF Lightstreamer Tutorial

This project focuses on a simple "Hello World" example to show how to use AMF with our new Flex client library (docs). We will create a JavaBean on the server-side and then use it on the client-side.

For this tutorial, I'm assuming you have already read the "Hello World" Tutorial - Java Adapter and "Hello World" Tutorial - HTML Client basic examples, or that you are already familiar with Lightstreamer concepts.

On the client, the result of this tutorial will be quite similar to the one obtained with the original Lightstreamer - "Hello World" Tutorial - HTML Client, but in Flex: we'll get a string alternating some different values (Hello AMF World) and a timestamp. On the server-side, data will be encapsulated into a JavaBean containing a String and a Date instance. This bean will be translated into a byte array and then injected into the Lightstreamer kernel as a single field, instead of being spread over different fields as simple strings (as the original adapter does). Here lies the power of AMF, as you will be able to push even complex JavaBeans to your Flex clients with ease.

Dig the Code

The front-end of our application will be a simple .mxml file compiled into a .swf. Open your text editor and start writing a mxml file (notice the creationComplete event):

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
   creationComplete="init()">

Then add a TextArea instance (myTextArea), where we'll put the updates:

<mx:TextArea width="693" height="56" id="myTextArea"
   fontSize="25" fontWeight="bold" text="loading..."/>

Now to Actionscript... We need an init method to initialize our client and subscribe to our table. We'll also configure a DateFormatter instance to print nice-looking dates.

public function init():void {
  dateFormatter.formatString = "MM/DD/YY J:NN:SS"; 
 
  var cInfo:ConnectionInfo = new ConnectionInfo();
  cInfo.server = "localhost";
  cInfo.adapterSet = "AMFHELLOWORLD";
 
  var client:LSClient = new LSClient();
 
  var nonVisualTable:NonVisualTable =
     new NonVisualTable(["greetings"],["AMF_field"],"MERGE",true);
  nonVisualTable.addEventListener(
    NonVisualItemUpdateEvent.NON_VISUAL_ITEM_UPDATE,onChange);
  client.subscribeTable(nonVisualTable);
 
  client.openConnection(cInfo);
}

The ConnectionInfo instance defines how we connect to the server and the adapter set that will handle our requests. In this case, we'll deploy our application on tje Lightstreamer internal web server so the server has to be set to "localhost". The adapter set in use will be called "AMFHELLOWORLD".

The LSClient instance is the core of the Lightstreamer Flex client library. It handles the connection to the server and the subscription/unsubscription of tables.

The NonVisualTable represents the subscription we're going to make. It is a mono-item ("greetings") and mono-field ("AMF_field") MERGE subscription. The fourth parameter in the constructors tells the server that we're looking for binary data, namely AMF.

Next, we need the onChange callback to handle the updates and show them on screen. We'll just extract the single field and, because it's a Bean, expand it, format the date, and put everything on the TextArea previously created:

public function onChange(evt:NonVisualItemUpdateEvent):void {
  if (evt.isFieldChanged("AMF_field")) {
    var obj:* = evt.getFieldValue("AMF_field");
    myTextArea.text = dateFormatter.format(obj.now) + " " + obj.hello;
  }
}

If you prefer a DataGrid in place of the TextArea, don't worry, the substitution is really easy. First, we replace the TextArea with a DataGrid (myDataGrid) with two columns. Each column is associated to a property of the bean sent by the server, so "AMF_field" represents the entire bean (the field of our subscription) and "AMF_field.hello" represents the "hello" property of the bean. We add a labelFunction to one of the columns so that we'll be able to format the received date.

<mx:DataGrid width="479" x="447.5" height="91" id="helloView" y="12" >
  <mx:columns>
    <mx:DataGridColumn dataField="AMF_field.now" 
      headerText="Time" labelFunction="formatDate" />
    <mx:DataGridColumn dataField="AMF_field.hello" headerText="Hello"/>
  </mx:columns>
</mx:DataGrid>

Then, we need something to be bound with the DataGrid. Luckily enough, our VisualTable class extends the ArrayCollection native class, so that it can be bound to a DataGrid to update the view automatically. We have to put our VisualTable in the global space so that we can declare the [Bindable] metadata on it.

[Bindable] public var myTable:VisualTable;

Finally, we have to initialize this table. The code is very similar to the one used to initialize the NonVisualTable, but we don't need to add any event handlers. Instead, we bind our VisualTable and the DataGrid assigning our Bindable VisualTable to the "dataProvider" property of the DataGrid.

var myTable:VisualTable =
  new VisualTable(["greetings"],["AMF_field"],"MERGE",true);
helloView.dataProvider = myTable;

The complete modified source of the Flex client is shown in the "AMFHelloWorld_DataGrid.mxml" source file of this project.

Notes

You've seen how to push Objects instead of Strings from a Lightstreamer server to a Flex client. You can exploit this technique to push complex data structures, but obviously, in doing so, you'll lose some of the optimizations offered by Lightstreamer protocol. For example, the merging algorithm (of the MERGE mode) is applied to the entire bean instead of being applied to each single field, so that every time a property within the bean changes, the entire bean is pushed to the client, not only the changed value. As with anything regarding engineering, you'll have to choose the trade-off that optimizes properly for your application.

Install

If you want to install a version of this demo pointing to your local Lightstreamer Server, follow these steps:

  • As prerequisite, the "Hello World" Tutorial - Java SE (AMF) Adapter has to be deployed in your local Lightstreamer server instance. Please check out that project and follow the installation instructions provided with it.
  • Get deploy.zip file of the latest release, unzip it, and copy the just unzipped AMFHelloWorld.swf file into the <LS_HOME>/pages folder of your Lightstreamer Server instance.
  • Start the Lightstreamer Server
  • Open your browser and point it to: http://localhost:8080/AMFHelloWorld.swf

Build

To build your own version of AMFHelloWorld.swf, instead of using the one provided in the deploy.zip file from the Install section above, follow these steps:

  • First of all, you'll need a browser, a Flash player, and a JDK.
  • Download Lightstreamer Server from Lightstreamer Download page.
  • You'll have to compile a Flex application, so you'll need either the Flex Builder or the Flex SDK (the example works with Flex 3 and Flex 4; use Flex 4 only if you're going to use it with the Flex Builder, otherwise, you may have problems with the mxmlc.
  • Download the complete source of the Flex client from the AMFHelloWorld.mxml source file of this project.
  • Compile the AMFHelloWorld.mxml into a swf file using the Flex SDK:
FLEX_SDK_HOME/bin/mxmlc AMFHelloWorld.mxml 
  -output AMFHelloWorld.swf 
  -library-path+=
    LS_HOME/DOCS-SDKs/sdk_client_flash_flex(native_as)
    /lib/Lightstreamer_as_client.swc

Note that if you're using a 64-bit JVM, you may have some issues running mxmlc; use a 32-bit JVM (mxmlc makes use of the JAVA_HOME environment variable to choose the JVM).

See Also

Lightstreamer Adapters Needed by This Client

Related Projects

Lightstreamer Compatibility Notes

  • Compatible with Lightstreamer Flex Client Library version 2.0 or newer.
  • Ensure that Flex Client API is supported by Lightstreamer Server license configuration.

About

AMF "Hello World" tutorial for Lightstreamer Flex Client Library

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •