Archive for November, 2008

15
Nov
08

Using Runtime Shared Libraries – Utilizing Flash Player Cache

This post is intended to highlight on new Flash Player [Flash Player 9 Update 3 (9,0,115,0)]cache feature using Flex and focus on overview of RSL’s in Flex 3 framework.

Continue reading ‘Using Runtime Shared Libraries – Utilizing Flash Player Cache’

10
Nov
08

Behavioral Design Patterns: State Design Pattern

The State Design Pattern is used when an application has different states, transitions between states and Objects behavior changes according to the changed state. Each Object has its own state defined internally.

Continue reading ‘Behavioral Design Patterns: State Design Pattern’

04
Nov
08

Behavioral Design Patterns: Template Method Design Pattern

Sometimes we want to specify the order (algorithm) of operations that a method uses, but allow subclasses to provide their own implementations by using the same order (algorithm) of operations. The intension of this pattern is to define an algorithm of operations in a method, and implementation of those operations is defined in subclasses.

Continue reading ‘Behavioral Design Patterns: Template Method Design Pattern’