Vaughn Vernon on Developing a Domain Driven Design First Actor-Based Microservices Framework

Vaughn Vernon is thought-leader in the space of reactive software and Domain Driven Design (DDD). Vaughn has recently released a new open source project called vlingo. The platform is designed to support DDD at the framework and toolkit level. On today’s podcast, Vaughn discusses what the framework is all about, why he felt it was needed, and some of the design decisions made in developing the platform, including things like the architecture, actor model decisions, clustering algorithm, and how DDD is realized with the framework.


Ref: https://www.infoq.com/podcasts/ddd-microservices-framework





player.bind(SC.Widget.Events.PLAY, function() {
if (milliseconds >= 0) {
player.seekTo(milliseconds);
}
});


seekTo = function(minutes, seconds) {
milliseconds = ((minutes * 60) + seconds) * 1000;


player.isPaused(function isPaused(p) {
if (p == true) {
player.play();
} else {
player.seekTo(milliseconds);
}
});
}



 •  0 comments  •  flag
Share on Twitter
Published on June 13, 2016 22:10
No comments have been added yet.


Vaughn Vernon's Blog

Vaughn Vernon
Vaughn Vernon isn't a Goodreads Author (yet), but they do have a blog, so here are some recent posts imported from their feed.
Follow Vaughn Vernon's blog with rss.