Exemplo n.º 1
0
 @DocAnnotation$annotation$(
     description = " @return the Vert.x-Web session corresponding to this socket\n")
 @TypeInfo("io.vertx.ceylon.web::Session?")
 public Session webSession() {
   Session ret =
       io.vertx.ceylon.web.Session.TO_CEYLON.converter().safeConvert(delegate.webSession());
   return ret;
 }
Exemplo n.º 2
0
 /** @return the Vert.x-Web session corresponding to this socket */
 public Session webSession() {
   Session ret = Session.newInstance(delegate.webSession());
   return ret;
 }