public void end(Buffer t) { delegate.end((io.vertx.core.buffer.Buffer) t.getDelegate()); }
/** * 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()); }
public SockJSSocket write(Buffer data) { ((io.vertx.ext.web.handler.sockjs.SockJSSocket) delegate) .write((io.vertx.core.buffer.Buffer) data.getDelegate()); return this; }