コード例 #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;
 }
コード例 #2
0
ファイル: SockJSSocket.java プロジェクト: kjniemi/vertx-web
 /** @return the Vert.x-Web session corresponding to this socket */
 public Session webSession() {
   Session ret = Session.newInstance(delegate.webSession());
   return ret;
 }