This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function M(){}; | |
M.contResult = function(value){ | |
return function(cont){ | |
console.log('in result: ' + value); | |
return cont(value); | |
} | |
} | |
M.contBind = function(mValue, mFunc){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// another attempt to combine CQRS with BDD | |
// tojans@twitter | |
using System; | |
using System.Linq; | |
using System.Collections; | |
using System.Collections.Generic; | |
#region Domain commands |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// POC CQRS bus for stateless synchronous commandhandlers | |
// and both both syncronous and asynchronous stateless eventhandlers | |
// Remarks : ToJans@twitter | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Threading; |
NewerOlder