Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • cgi/session.rb

Parent

CGI::Session::NullStore

Dummy session storage class.

Implements session storage place holder. No actual storage will be done.

Public Class Methods

new(session, option=nil) click to toggle source

Create a new NullStore instance.

session is the session this instance is associated with. option is a list of initialisation options. None are currently recognised.

 
               # File cgi/session.rb, line 504
def initialize(session, option=nil)
end
            

Public Instance Methods

close() click to toggle source

Close session storage.

A no-op.

 
               # File cgi/session.rb, line 521
def close
end
            
delete() click to toggle source

Delete the session state.

A no-op.

 
               # File cgi/session.rb, line 527
def delete
end
            
restore() click to toggle source

Restore (empty) session state.

 
               # File cgi/session.rb, line 508
def restore
  {}
end
            
update() click to toggle source

Update session state.

A no-op.

 
               # File cgi/session.rb, line 515
def update
end
            

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.