Vert.x ZeroMq bridge 1.0.0 released for Vert 2.1 - production ready.
Find it here:
http://modulereg.vertx.io/
And instructions here:
https://github.com/p14n/vert-zeromq
This is the start of a project bridging zeromq (zeromq.org) and vert.x (vertx.io).
https://github.com/p14n/vert-zeromq
ZeroMQBridge bridge = new ZeroMQBridge("tcp://*:5558", vertx.eventBus()); bridge.start(); vertx.eventBus().registerHandler("testHandler", new Handler>() { @Override public void handle(Message message) { message.reply(message.body()); } });
Hopefully I'll get the time soon to make it a proper vert-x mod.
This example compiles with :optimizations :advanced.
This file contains 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
(ns gameapp) | |
(def gamemod | |
"Create a gameapp module within Angular.js" | |
(.module js/angular "gameapp" (array))) | |
(.directive gamemod "gameslist" | |
(fn [] | |
(js-obj | |
"restrict" "E" | |
"scope" (js-obj "games" "=") | |
"template" "<div ng-repeat='game in games'>Game {{game.name}}</div>" | |
))) | |
(defn ^:export GameCtrl [$scope] | |
(aset $scope "mygames" (array | |
(js-obj "name" "a") | |
(js-obj "name" "b") | |
(js-obj "name" "c")))) | |
(aset GameCtrl "$inject" (array "$scope")) |
This file contains 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
<!doctype html> | |
<html ng-app="gameapp"> | |
<head> | |
<script src="angular.min.js"></script> | |
<script src="cljs-w-directive.js"></script> | |
</head> | |
<body> | |
<h2>Game names</h2> | |
<div ng-controller="gameapp.GameCtrl"> | |
<gameslist games="mygames"/> | |
</div> | |
</body> | |
</html> |
Seems odd to me, so this is posted with the caveat that may be a better, more idiomatic way of achieving the same result, but to immediately fail an actor using the ask pattern when there has been some sort of remoting failure:
This file contains 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
public class RemoteErrorActor extends UntypedActor { | |
@SuppressWarnings("rawtypes") | |
@Override | |
public void onReceive(Object o) throws Exception { | |
if (o instanceof RemoteClientWriteFailed) { | |
RemoteClientWriteFailed fail = (RemoteClientWriteFailed) o; | |
if (fail.getRequest() instanceof Tuple3) { | |
Tuple3 t3 = (Tuple3) fail.getRequest(); | |
if (t3._2() instanceof Some) { | |
Some s = (Some) t3._2(); | |
if (s.get() instanceof PromiseActorRef) { | |
PromiseActorRef par = (PromiseActorRef) s.get(); | |
par.tell(/*something useful*/, self()); | |
} | |
} | |
} | |
} | |
} | |
} | |
system.eventStream().subscribe(system.actorOf(new Props(RemoteErrorActor.class)), | |
RemoteClientWriteFailed.class); |
The Spray-template jetty example comes with a web.xml configuration. If embedded is more your style, this is the way to go (Jetty 8.1.7):
This file contains 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
package com.example | |
import spray.servlet.Servlet30ConnectorServlet | |
import spray.servlet.Initializer | |
import org.eclipse.jetty.server.Server | |
import org.eclipse.jetty.server.bio.SocketConnector | |
import org.eclipse.jetty.webapp.WebAppContext | |
import org.eclipse.jetty.servlet.ServletContextHandler | |
object JettyServer { | |
def main(args : Array[String]) : Unit = { | |
start() | |
} | |
def start() { | |
try { | |
val server = new Server() | |
val connector = new SocketConnector(); | |
connector.setPort(8080); | |
val context = new ServletContextHandler(ServletContextHandler.SESSIONS); | |
context.setContextPath("/"); | |
server.setHandler(context); | |
context.addEventListener(new Initializer()); | |
val servletHolder = context.addServlet(classOf[Servlet30ConnectorServlet].getName(), "/*"); | |
server.setConnectors(Array(connector)); | |
server.start(); | |
} catch { | |
case e:Throwable => e.printStackTrace(); | |
} | |
} | |
} |