Class: VertxWeb::CookieHandler
- Inherits:
-
Object
- Object
- VertxWeb::CookieHandler
- Defined in:
- /Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/cookie_handler.rb
Overview
A handler which decodes cookies from the request, makes them available in the
and writes them back in the response.
Class Method Summary (collapse)
-
+ (::VertxWeb::CookieHandler) create
Create a cookie handler.
Instance Method Summary (collapse)
Class Method Details
+ (::VertxWeb::CookieHandler) create
Create a cookie handler
28 29 30 31 32 33 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/cookie_handler.rb', line 28 def self.create if !block_given? return ::Vertx::Util::Utils.safe_create(Java::IoVertxExtWebHandler::CookieHandler.java_method(:create, []).call(),::VertxWeb::CookieHandler) end raise ArgumentError, "Invalid arguments when calling create()" end |
Instance Method Details
- (void) handle(arg0 = nil)
This method returns an undefined value.
20 21 22 23 24 25 |
# File '/Users/julien/java/vertx-stack/stack-docs/target/rb/vertx-web/cookie_handler.rb', line 20 def handle(arg0=nil) if arg0.class.method_defined?(:j_del) && !block_given? return @j_del.java_method(:handle, [Java::IoVertxExtWeb::RoutingContext.java_class]).call(arg0.j_del) end raise ArgumentError, "Invalid arguments when calling handle(arg0)" end |