Class: Gts::Storage

Inherits:
Object
  • Object
show all
Defined in:
lib/gts/storage.rb

Direct Known Subclasses

RedisStorage

Instance Method Summary collapse

Instance Method Details

#append(value) ⇒ Object

 append new item to the end of the list



5
6
7
# File 'lib/gts/storage.rb', line 5

def append(value)
  
end

#dumpObject

get all the elements in the list and empty it



10
11
12
# File 'lib/gts/storage.rb', line 10

def dump
  
end

#infoObject



19
20
21
# File 'lib/gts/storage.rb', line 19

def info
  
end

#sizeObject

get the count of the elements in the list



15
16
17
# File 'lib/gts/storage.rb', line 15

def size
  
end