Example #1
0
 public void end(Buffer t) {
   delegate.end((io.vertx.core.buffer.Buffer) t.getDelegate());
 }
Example #2
0
 /**
  * Set the body. Used by the {@link io.vertx.ext.web.handler.BodyHandler}. You will not normally
  * call this method.
  *
  * @param body the body
  */
 public void setBody(Buffer body) {
   this.delegate.setBody((io.vertx.core.buffer.Buffer) body.getDelegate());
 }
Example #3
0
 public SockJSSocket write(Buffer data) {
   ((io.vertx.ext.web.handler.sockjs.SockJSSocket) delegate)
       .write((io.vertx.core.buffer.Buffer) data.getDelegate());
   return this;
 }