Created
May 14, 2012 16:41
-
-
Save joachimhs/2694990 to your computer and use it in GitHub Desktop.
Vert.X Handler
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 org.eurekaj.manager.data; | |
import org.vertx.java.core.Handler; | |
import org.vertx.java.core.buffer.Buffer; | |
import org.vertx.java.core.http.HttpServerRequest; | |
public class HandleInstrumentationMenuRequest implements Handler<Buffer> { | |
private HttpServerRequest req; | |
public HandleInstrumentationMenuRequest(HttpServerRequest req) { | |
this.req = req; | |
} | |
@Override | |
public void handle(Buffer buffer) { | |
//Parse Buffer contents | |
//Create Response | |
//send the response | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment