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

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksSoftradix Technologies
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 

Recently uploaded (20)

Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
The transition to renewables in India.pdf
The transition to renewables in India.pdfThe transition to renewables in India.pdf
The transition to renewables in India.pdf
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Benefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other FrameworksBenefits Of Flutter Compared To Other Frameworks
Benefits Of Flutter Compared To Other Frameworks
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 

關於 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