Method: Arrow::Session::FileStore#insert
- Defined in:
- lib/arrow/session/filestore.rb
#insert ⇒ Object
Insert the specified data hash into whatever permanent storage the Store object is acting as an interface to.
83 84 85 86 87 88 |
# File 'lib/arrow/session/filestore.rb', line 83 def insert super {|data| self.log.debug "Inserting data into session file" self.open( DefaultIoFlags|File::EXCL ).print( data ) } end |