SlideShare a Scribd company logo
1 of 39
Download to read offline
關於 PureMVC Command 的
       那點事
              Erin Lin
      http://about.me/erinlin
到處都有 Command...
Command 是?
Command 是?
Command 是?
Command 是?
Command
Command       Command


Command
       Command
   Command
         Command
       不想學還是要學的
 Command
         命令 設計模式
 Command         Command
                Command
Command Command
    Command
       Command
<<interface>>
                         ICommand


     Controller         execute():void

   addCommand()
 removeCommand()
//-------------------    Command
   doSomething()

                        execute():void
真情推薦
傻瓜都可以看懂的設計模式入門書
    自己上網去買!




     http://www.oreilly.com.tw/product_java.php?id=a163
回到 PureMVC...
PureMVC
兩個基本必知 Command
最基本的
SimpleCommand
反正要亂搞就是
    extends
SimpleCommand
你認識的第一支繼承 SimpleCommand 寫法
package com.mvc.controls
{
	 	
	 import org.puremvc.as3.interfaces.INotification;
	 import org.puremvc.as3.patterns.command.SimpleCommand;

	   public class StartupCommand extends SimpleCommand
	   {
	   	 public function StartupCommand()
	   	 {
	   	 	 super();
	   	 }
	   	 override public function execute(notification:INotification):void{
	   	 	 //初始 Application 要做的事情
	   	 	 //facade.registerMediator, facade.registerProxy
	   	   	   // or facade.registerCommand
	   	   	   //通常都會將 Application 傳進來做應用
	   	   }
	   }
}
群組同時執行的
MacroCommand
使用 MacroCommand 的 StartupCommand

package com.mvc.controls
{
	 import org.puremvc.as3.patterns.command.MacroCommand;

	   public class StartupCommand extends MacroCommand
	   {
	   	 public function StartupCommand()
	   	 {
	   	 	 super();
	   	 }
	   	
	   	 override protected function initializeMacroCommand() :void
         {
         		 addSubCommand( ModelPrepCommand );
         		 addSubCommand( ViewPrepCommand );
	   	 	 	 addSubCommand( 你寫的Command );
         }
	   }
}
啊...我想要一個命令做完,
    才要執行下一個....
最後還要來個完美的 Ending
  要怎麼辦?
http://trac.puremvc.org/PureMVC_AS3/




                              PureMVC Utilities
                                 使用的時候要心存感激喔!
處理非同步的 AsyncCommand




      http://trac.puremvc.org/Utility_AS3_AsyncCommand
啥叫非同步?
當然就是一件工作做完
  才做下一個指令
 照順序來不懂嗎?
AsyncCommand 也有
 兩個 Class 給你用
AsyncCommand and
AsyncMacroCommand
基本用法是以成組的方式應用
package controllers
{
	 import flash.utils.setTimeout;
	
	 import org.puremvc.as3.multicore.interfaces.ICommand;
	 import org.puremvc.as3.multicore.interfaces.INotification;
	 import org.puremvc.as3.multicore.patterns.command.AsyncCommand;
	
	 public class AsyncCommand0 extends AsyncCommand implements ICommand
	 {
	 	 public function AsyncCommand0()
	 	 {
	 	 	 super();
	 	 }
	 	
	 	 override public function execute(notification:INotification):void{
	 	 	 trace("lalala AsyncCommand0");
	 	 	 setTimeout( commandComplete, 1000);
	 	 }
	 }
}
package controllers
{
	 import
org.puremvc.as3.multicore.patterns.command.AsyncMacroCommand;
	
	 public class StartupCommand extends AsyncMacroCommand
	 {
	 	 public function StartupCommand()
	 	 {
	 	 	 super();
	 	 }
	 	 private function onComplete():void{
	 	 	 trace("end of StartupCommand");
	 	 }
	 	 override protected function initializeAsyncMacroCommand():void{
	 	 	 setOnComplete( onComplete );
	 	 	 addSubCommand( AsyncCommand0 );
	 	 	 addSubCommand( AsyncCommand1 );
	 	 	 addSubCommand( AsyncCommand2 );
	 	 }
	 }
}
AsyncCommand
    DEMO
所以 Command 可以做什麼?
應用一:Assets loader
package controllers
{
	 import mx.rpc.AsyncToken;
	 import mx.rpc.IResponder;
	 import mx.rpc.http.HTTPService;
	 import org.puremvc.as3.multicore.interfaces.ICommand;
	 import org.puremvc.as3.multicore.interfaces.INotification;
	 import org.puremvc.as3.multicore.patterns.command.AsyncCommand;	
	 public class LoadConfigCommand extends AsyncCommand implements IResponder
	 {
	 	 public function LoadConfigCommand()
	 	 {
	 	 	 super();
	 	 }
	 	 override public function execute(notification:INotification):void{
	 	 	 var service:HTTPService = new HTTPService;
	 	 	 service.resultFormat = 'xml';
	 	 	 service.url = "your configuration files url";
	 	 	 service.send();
	 	 }	
	 	 public function result( result:Object ):void{
	 	 	 this.commandComplete();
	 	 }
	 	 public function fault( result:Object ):void{
	 	 	 //如果要中斷流程,需要在這邊傳出 ERROR notification 由其他 Command 處理
	 	 }
	 }
package controllers
{
	 import org.puremvc.as3.multicore.patterns.command.AsyncMacroCommand;
	
	 public class StartupCommand extends AsyncMacroCommand
	 {
	 	 public function StartupCommand()
	 	 {
	 	 	 super();
	 	 }
	 	 private function onComplete():void{
	 	 	 trace("end of StartupCommand");
          sendNotification( "APP_INIT" );
	 	 }
	 	 override protected function initializeAsyncMacroCommand():void{
	 	 	 this.setOnComplete( onComplete );
	 	 	 addSubCommand( LoadConfigCommand );
	 	 	 addSubCommand( LoadAssetsCommand );
	 	 	 addSubCommand( LoadXXXCommand );
	 	 }
	 }
}
應用二:做外掛...
package com.controls
{
	   public class GroupEditorCommand extends SimpleCommand implements ICommand
	   {
	   	    public function GroupEditorCommand()
	   	    {
	   	    	   super();
	   	    }
	   	    override public function execute(notification:INotification):void
	   	    {
	   	    	   switch( notification.getName() ){
	   	    	   	    case "GroupEditorCommand.INIT":
	   	    	   	    	   //將之前開發用的 proxy notification 組織起來
	   	    	   	    	   facade.registerCommand( "DataProxy.ITEM_UPDATED" , GroupEditorCommand );
	   	    	   	    	   facade.registerCommand( "XXXProxy.NOTIFICATION_NAME" , GroupEditorCommand );
	   	    	   	    	   showLoader();
	   	    	   	    	   //看你要做什麼起始
	   	    	   	    	   break;
	   	    	   	    case "DataProxy.ITEM_UPDATED":
	   	    	   	    	   //看要叫 proxy 做啥,還是 call 啥畫面出來
	   	    	   	    	   break;
	   	    	   }
	   	    }
	   	    private function clearCommands():void{
	   	    	   facade.removeCommand( "DataProxy.ITEM_UPDATED" );
	   	    	   facade.removeCommand( "XXXProxy.NOTIFICATION_NAME" );
	   	    	   removeLoader();
	   	    	   sendNotification( "GroupEditorCommand.CLOSE" );
	   	    }
	   	    private function showLoader( string:String ):void{
	   	    	   //將檔畫面的 loader call 到前景
	   	    }	
	   	    private function removeLoader():void{
	   	    	   //remove loader
	   	    }
	   }
}
其他?
其實你要怎樣玩它
   就開心的玩吧!
想太多就什麼都寫不出來了!
最後...
請保持愉快的心情
開心的寫程式吧!
FIN
參考資料


•   http://trac.puremvc.org/PureMVC_AS3/

•   http://www.oreilly.com.tw/product_java.php?id=a163

•   http://trac.puremvc.org/Utility_AS3_AsyncCommand

More Related Content

Viewers also liked

Internet in mobilità: scenari, tecnologie ed esigenze dei Consumatori
Internet in mobilità: scenari, tecnologie ed esigenze dei ConsumatoriInternet in mobilità: scenari, tecnologie ed esigenze dei Consumatori
Internet in mobilità: scenari, tecnologie ed esigenze dei ConsumatoriVodafoneIT
 
Developing for the BlackBerry PlayBook using Flex Builder Burrito
Developing for the BlackBerry PlayBook using Flex Builder BurritoDeveloping for the BlackBerry PlayBook using Flex Builder Burrito
Developing for the BlackBerry PlayBook using Flex Builder BurritoYuri Visser
 
Lunch and learn as3_frameworks
Lunch and learn as3_frameworksLunch and learn as3_frameworks
Lunch and learn as3_frameworksYuri Visser
 
Switching perspectives nov10 s sh
Switching perspectives nov10 s shSwitching perspectives nov10 s sh
Switching perspectives nov10 s shJohn Juliano
 
An Opinionated Introduction to Mate
An Opinionated Introduction to MateAn Opinionated Introduction to Mate
An Opinionated Introduction to MateEffective
 
Architecting ActionScript 3 applications using PureMVC
Architecting ActionScript 3 applications using PureMVCArchitecting ActionScript 3 applications using PureMVC
Architecting ActionScript 3 applications using PureMVCmarcocasario
 
User Testing: Adapt to Fit Your Needs
User Testing: Adapt to Fit Your NeedsUser Testing: Adapt to Fit Your Needs
User Testing: Adapt to Fit Your NeedsEffective
 

Viewers also liked (7)

Internet in mobilità: scenari, tecnologie ed esigenze dei Consumatori
Internet in mobilità: scenari, tecnologie ed esigenze dei ConsumatoriInternet in mobilità: scenari, tecnologie ed esigenze dei Consumatori
Internet in mobilità: scenari, tecnologie ed esigenze dei Consumatori
 
Developing for the BlackBerry PlayBook using Flex Builder Burrito
Developing for the BlackBerry PlayBook using Flex Builder BurritoDeveloping for the BlackBerry PlayBook using Flex Builder Burrito
Developing for the BlackBerry PlayBook using Flex Builder Burrito
 
Lunch and learn as3_frameworks
Lunch and learn as3_frameworksLunch and learn as3_frameworks
Lunch and learn as3_frameworks
 
Switching perspectives nov10 s sh
Switching perspectives nov10 s shSwitching perspectives nov10 s sh
Switching perspectives nov10 s sh
 
An Opinionated Introduction to Mate
An Opinionated Introduction to MateAn Opinionated Introduction to Mate
An Opinionated Introduction to Mate
 
Architecting ActionScript 3 applications using PureMVC
Architecting ActionScript 3 applications using PureMVCArchitecting ActionScript 3 applications using PureMVC
Architecting ActionScript 3 applications using PureMVC
 
User Testing: Adapt to Fit Your Needs
User Testing: Adapt to Fit Your NeedsUser Testing: Adapt to Fit Your Needs
User Testing: Adapt to Fit Your Needs
 

Similar to 關於 Puremvc Command 的那點事

Transaction Management Tool
Transaction Management ToolTransaction Management Tool
Transaction Management ToolPeeyush Ranjan
 
Foomo / Zugspitze Presentation
Foomo / Zugspitze PresentationFoomo / Zugspitze Presentation
Foomo / Zugspitze Presentationweareinteractive
 
Dropwizard and Friends
Dropwizard and FriendsDropwizard and Friends
Dropwizard and FriendsYun Zhi Lin
 
Session2-J2ME development-environment
Session2-J2ME development-environmentSession2-J2ME development-environment
Session2-J2ME development-environmentmuthusvm
 
Appium troubleshooting
Appium troubleshootingAppium troubleshooting
Appium troubleshootingadi ben aroya
 
Command pattern vs. MVC: Lean Beans (are made of this)
Command pattern vs. MVC: Lean Beans (are made of this)Command pattern vs. MVC: Lean Beans (are made of this)
Command pattern vs. MVC: Lean Beans (are made of this)philipdurbin
 
The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013
The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013
The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013Raimundas Banevičius
 
Presentation Lfoppiano Pycon
Presentation Lfoppiano PyconPresentation Lfoppiano Pycon
Presentation Lfoppiano PyconLuca Foppiano
 
Taking Apache Camel For a Ride
Taking Apache Camel For a RideTaking Apache Camel For a Ride
Taking Apache Camel For a RideBruce Snyder
 
Forcetree.com writing a java program to connect to sfdc
Forcetree.com writing  a java program to connect  to sfdcForcetree.com writing  a java program to connect  to sfdc
Forcetree.com writing a java program to connect to sfdcEdwin Vijay R
 
Will it blend? Java agents and OSGi
Will it blend? Java agents and OSGiWill it blend? Java agents and OSGi
Will it blend? Java agents and OSGiRobert Munteanu
 
DOSUG Taking Apache Camel For A Ride
DOSUG Taking Apache Camel For A RideDOSUG Taking Apache Camel For A Ride
DOSUG Taking Apache Camel For A RideMatthew McCullough
 
The Next Step in AS3 Framework Evolution
The Next Step in AS3 Framework EvolutionThe Next Step in AS3 Framework Evolution
The Next Step in AS3 Framework EvolutionFITC
 
Setting Apple's UI Automation Free with Appium
Setting Apple's UI Automation Free with AppiumSetting Apple's UI Automation Free with Appium
Setting Apple's UI Automation Free with Appiummobiletestsummit
 
Android programming -_pushing_the_limits
Android programming -_pushing_the_limitsAndroid programming -_pushing_the_limits
Android programming -_pushing_the_limitsDroidcon Berlin
 

Similar to 關於 Puremvc Command 的那點事 (20)

Transaction Management Tool
Transaction Management ToolTransaction Management Tool
Transaction Management Tool
 
Cursor Demo App
Cursor Demo AppCursor Demo App
Cursor Demo App
 
Foomo / Zugspitze Presentation
Foomo / Zugspitze PresentationFoomo / Zugspitze Presentation
Foomo / Zugspitze Presentation
 
Dropwizard and Friends
Dropwizard and FriendsDropwizard and Friends
Dropwizard and Friends
 
Session2-J2ME development-environment
Session2-J2ME development-environmentSession2-J2ME development-environment
Session2-J2ME development-environment
 
Appium troubleshooting
Appium troubleshootingAppium troubleshooting
Appium troubleshooting
 
Command pattern vs. MVC: Lean Beans (are made of this)
Command pattern vs. MVC: Lean Beans (are made of this)Command pattern vs. MVC: Lean Beans (are made of this)
Command pattern vs. MVC: Lean Beans (are made of this)
 
The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013
The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013
The Next Step in AS3 Framework Evolution - FITC Amsterdam 2013
 
Presentation Lfoppiano Pycon
Presentation Lfoppiano PyconPresentation Lfoppiano Pycon
Presentation Lfoppiano Pycon
 
Taking Apache Camel For a Ride
Taking Apache Camel For a RideTaking Apache Camel For a Ride
Taking Apache Camel For a Ride
 
Tutorial 8 menu
Tutorial 8   menuTutorial 8   menu
Tutorial 8 menu
 
Forcetree.com writing a java program to connect to sfdc
Forcetree.com writing  a java program to connect  to sfdcForcetree.com writing  a java program to connect  to sfdc
Forcetree.com writing a java program to connect to sfdc
 
Will it blend? Java agents and OSGi
Will it blend? Java agents and OSGiWill it blend? Java agents and OSGi
Will it blend? Java agents and OSGi
 
DOSUG Taking Apache Camel For A Ride
DOSUG Taking Apache Camel For A RideDOSUG Taking Apache Camel For A Ride
DOSUG Taking Apache Camel For A Ride
 
Robotlegs Extensions
Robotlegs ExtensionsRobotlegs Extensions
Robotlegs Extensions
 
The Next Step in AS3 Framework Evolution
The Next Step in AS3 Framework EvolutionThe Next Step in AS3 Framework Evolution
The Next Step in AS3 Framework Evolution
 
Bt j2 me
Bt j2 meBt j2 me
Bt j2 me
 
Flex Monkey
Flex MonkeyFlex Monkey
Flex Monkey
 
Setting Apple's UI Automation Free with Appium
Setting Apple's UI Automation Free with AppiumSetting Apple's UI Automation Free with Appium
Setting Apple's UI Automation Free with Appium
 
Android programming -_pushing_the_limits
Android programming -_pushing_the_limitsAndroid programming -_pushing_the_limits
Android programming -_pushing_the_limits
 

Recently uploaded

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DaySri Ambati
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesExploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesSanjay Willie
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Fact vs. Fiction: Autodetecting Hallucinations in LLMs
Fact vs. Fiction: Autodetecting Hallucinations in LLMsFact vs. Fiction: Autodetecting Hallucinations in LLMs
Fact vs. Fiction: Autodetecting Hallucinations in LLMsZilliz
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 

Recently uploaded (20)

How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo DayH2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
H2O.ai CEO/Founder: Sri Ambati Keynote at Wells Fargo Day
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your QueriesExploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
Exploring ChatGPT Prompt Hacks To Maximally Optimise Your Queries
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Fact vs. Fiction: Autodetecting Hallucinations in LLMs
Fact vs. Fiction: Autodetecting Hallucinations in LLMsFact vs. Fiction: Autodetecting Hallucinations in LLMs
Fact vs. Fiction: Autodetecting Hallucinations in LLMs
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 

關於 Puremvc Command 的那點事

  • 1. 關於 PureMVC Command 的 那點事 Erin Lin http://about.me/erinlin
  • 7. Command Command Command Command Command Command Command 不想學還是要學的 Command 命令 設計模式 Command Command Command Command Command Command Command
  • 8. <<interface>> ICommand Controller execute():void addCommand() removeCommand() //------------------- Command doSomething() execute():void
  • 9. 真情推薦 傻瓜都可以看懂的設計模式入門書 自己上網去買! http://www.oreilly.com.tw/product_java.php?id=a163
  • 13. 反正要亂搞就是 extends SimpleCommand
  • 14. 你認識的第一支繼承 SimpleCommand 寫法 package com.mvc.controls { import org.puremvc.as3.interfaces.INotification; import org.puremvc.as3.patterns.command.SimpleCommand; public class StartupCommand extends SimpleCommand { public function StartupCommand() { super(); } override public function execute(notification:INotification):void{ //初始 Application 要做的事情 //facade.registerMediator, facade.registerProxy // or facade.registerCommand //通常都會將 Application 傳進來做應用 } } }
  • 16. 使用 MacroCommand 的 StartupCommand package com.mvc.controls { import org.puremvc.as3.patterns.command.MacroCommand; public class StartupCommand extends MacroCommand { public function StartupCommand() { super(); } override protected function initializeMacroCommand() :void { addSubCommand( ModelPrepCommand ); addSubCommand( ViewPrepCommand ); addSubCommand( 你寫的Command ); } } }
  • 17. 啊...我想要一個命令做完, 才要執行下一個.... 最後還要來個完美的 Ending 要怎麼辦?
  • 18. http://trac.puremvc.org/PureMVC_AS3/ PureMVC Utilities 使用的時候要心存感激喔!
  • 19. 處理非同步的 AsyncCommand http://trac.puremvc.org/Utility_AS3_AsyncCommand
  • 22. AsyncCommand 也有 兩個 Class 給你用
  • 25. package controllers { import flash.utils.setTimeout; import org.puremvc.as3.multicore.interfaces.ICommand; import org.puremvc.as3.multicore.interfaces.INotification; import org.puremvc.as3.multicore.patterns.command.AsyncCommand; public class AsyncCommand0 extends AsyncCommand implements ICommand { public function AsyncCommand0() { super(); } override public function execute(notification:INotification):void{ trace("lalala AsyncCommand0"); setTimeout( commandComplete, 1000); } } }
  • 26. package controllers { import org.puremvc.as3.multicore.patterns.command.AsyncMacroCommand; public class StartupCommand extends AsyncMacroCommand { public function StartupCommand() { super(); } private function onComplete():void{ trace("end of StartupCommand"); } override protected function initializeAsyncMacroCommand():void{ setOnComplete( onComplete ); addSubCommand( AsyncCommand0 ); addSubCommand( AsyncCommand1 ); addSubCommand( AsyncCommand2 ); } } }
  • 27. AsyncCommand DEMO
  • 30. package controllers { import mx.rpc.AsyncToken; import mx.rpc.IResponder; import mx.rpc.http.HTTPService; import org.puremvc.as3.multicore.interfaces.ICommand; import org.puremvc.as3.multicore.interfaces.INotification; import org.puremvc.as3.multicore.patterns.command.AsyncCommand; public class LoadConfigCommand extends AsyncCommand implements IResponder { public function LoadConfigCommand() { super(); } override public function execute(notification:INotification):void{ var service:HTTPService = new HTTPService; service.resultFormat = 'xml'; service.url = "your configuration files url"; service.send(); } public function result( result:Object ):void{ this.commandComplete(); } public function fault( result:Object ):void{ //如果要中斷流程,需要在這邊傳出 ERROR notification 由其他 Command 處理 } }
  • 31. package controllers { import org.puremvc.as3.multicore.patterns.command.AsyncMacroCommand; public class StartupCommand extends AsyncMacroCommand { public function StartupCommand() { super(); } private function onComplete():void{ trace("end of StartupCommand"); sendNotification( "APP_INIT" ); } override protected function initializeAsyncMacroCommand():void{ this.setOnComplete( onComplete ); addSubCommand( LoadConfigCommand ); addSubCommand( LoadAssetsCommand ); addSubCommand( LoadXXXCommand ); } } }
  • 33. package com.controls { public class GroupEditorCommand extends SimpleCommand implements ICommand { public function GroupEditorCommand() { super(); } override public function execute(notification:INotification):void { switch( notification.getName() ){ case "GroupEditorCommand.INIT": //將之前開發用的 proxy notification 組織起來 facade.registerCommand( "DataProxy.ITEM_UPDATED" , GroupEditorCommand ); facade.registerCommand( "XXXProxy.NOTIFICATION_NAME" , GroupEditorCommand ); showLoader(); //看你要做什麼起始 break; case "DataProxy.ITEM_UPDATED": //看要叫 proxy 做啥,還是 call 啥畫面出來 break; } } private function clearCommands():void{ facade.removeCommand( "DataProxy.ITEM_UPDATED" ); facade.removeCommand( "XXXProxy.NOTIFICATION_NAME" ); removeLoader(); sendNotification( "GroupEditorCommand.CLOSE" ); } private function showLoader( string:String ):void{ //將檔畫面的 loader call 到前景 } private function removeLoader():void{ //remove loader } } }
  • 35. 其實你要怎樣玩它 就開心的玩吧! 想太多就什麼都寫不出來了!
  • 38. FIN
  • 39. 參考資料 • http://trac.puremvc.org/PureMVC_AS3/ • http://www.oreilly.com.tw/product_java.php?id=a163 • http://trac.puremvc.org/Utility_AS3_AsyncCommand