예제 #1
0
 /**
  * Remove a cookie. The context must have first been routed to a {@link
  * io.vertx.rxjava.ext.web.handler.CookieHandler} for this to work.
  *
  * @param name the name of the cookie
  * @return the cookie, if it existed, or null
  */
 public Cookie removeCookie(String name) {
   Cookie ret = Cookie.newInstance(this.delegate.removeCookie(name));
   return ret;
 }