Futurescale, Inc. PureMVC Home

The PureMVC Framework Code at the Speed of Thought


Over 10 years of community discussion and knowledge are maintained here as a read-only archive.

New discussions should be taken up in issues on the appropriate projects at https://github.com/PureMVC

Show Posts

* | |

  Show Posts
Pages: [1] 2 3
1  Announcements and General Discussion / Fabrication / Re: [BUG?] Constructor of a mediator executed twice at first run on: January 03, 2011, 03:42:02
Hi,

Second constructor call for mediator is caused by reflection mechanism. As you've probably noticed in mediator constructor there is ( and should be ) as less code as possible - main mediator initialization should be done in onRegister() method. You should not be worry of second constructor run - reflection mechanism creates only local variable so it is deleted as soon as all reflection info about mediator instance is gathered. This explanation is only for mediator - I don't know how you managed to have second viewComponent instance created. Can you send me some code? Or maybe put some example in fabrication google code issues section?

Thanks.
Rafał
2  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: November 04, 2010, 01:03:17
0.7.6.2
Changelog: http://code.google.com/p/fabrication/wiki/ChangeLog
3  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: October 13, 2010, 11:34:36
0.7.6.1
Changelog: http://code.google.com/p/fabrication/wiki/ChangeLog
4  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: September 29, 2010, 03:12:39
0.7.6
Changelog: http://code.google.com/p/fabrication/wiki/ChangeLog
5  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: September 21, 2010, 07:42:34
0.7.5.5
Changelog: http://code.google.com/p/fabrication/wiki/ChangeLog
6  Announcements and General Discussion / Fabrication / Re: ItemRenderer's in Fabrication on: September 21, 2010, 07:42:07
Hi,

Sorry fo such delay - here is an example of itemrenderers and reaction prepared by Piotr. Hope it helps! :)
7  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: September 12, 2010, 02:02:26
0.7.5.4

Changelog: http://code.google.com/p/fabrication/wiki/ChangeLog
8  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: August 20, 2010, 01:38:24
0.7.5.3

I've missed one update info, so please read chageLog for last two version to see all new fixes and upgrades :)
ChangeLog: http://code.google.com/p/fabrication/wiki/ChangeLog
9  Announcements and General Discussion / Fabrication / Re: Fabrication releases and updates on: August 13, 2010, 05:17:33
0.7.5.1

ChangeLog http://code.google.com/p/fabrication/wiki/ChangeLog
10  Announcements and General Discussion / Fabrication / Re: Can a module route notification to itself? on: August 10, 2010, 11:59:09
If I understand this well, calling:

routeNotification( "someNote", results, null, "* );
sendNotification( "someNote, results );

should do the work. If you call this in any place in any module, every respondToSomeNote handler should be called in every mediator in your app. Is this ok?
11  Announcements and General Discussion / Fabrication / Re: Can a module route notification to itself? on: August 10, 2010, 01:54:24
Hi guys,

sendNotification is "native" method form PureMVC so it should remains untouched in my opinion. I don't know exactly original plans and thoughts about routers etc. ( because I didn't speak with Darshan about this ) but I think he wanted to have cleary separated methods for in/out communications.
If you want to notify a sender about note you can always trigger sendNotification after routeNotification with the same parameters ( noteName, body, type ). I think about putting sendNote call inside routeNotification method body, but I don't think if routing note to others modules and notifying sender itself is very common operation. What dou you think about this?

12  Announcements and General Discussion / Fabrication / Fabrication 0.7.5 ( custom dependencies & RPC extension ) on: August 03, 2010, 06:58:35

 version 0.7.5:
 Changelog
 Custom dependencies
 RPC extension
13  Announcements and General Discussion / Fabrication / Fabrication releases and updates on: July 29, 2010, 12:11:44
0.7.4.1

Changelog: http://code.google.com/p/fabrication/wiki/ChangeLog
14  Announcements and General Discussion / Fabrication / Re: Fabrication 0.7.4, logging and FabricationConsole 0.1 on: July 28, 2010, 12:08:02
Hi,

Log is disabled by default, you have to override fabricationLoggerEnabled getter in fabricator ( and return true ) to make it enabled.
15  Announcements and General Discussion / Fabrication / Re: Flex unit Testing for Fabrication on: July 27, 2010, 06:03:06
Hi,

Sorry for waiting so long. You can test your fabrication based app with this utility http://code.google.com/p/puremvc-flexunit-testing/. It is designed mainly for PureMVC but you should be able to apply it to your application.
Pages: [1] 2 3