Class: FluentQuery::Drivers::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/fluent-query/drivers/result.rb

Overview

Represents general driver result accessor.

Instance Method Summary collapse

Constructor Details

#initializeResult

Returns a new instance of Result.



18
19
20
21
22
# File 'lib/fluent-query/drivers/result.rb', line 18

def initialize
    if self.instance_of? FluentQuery::Drivers::Result
        not_implemented
    end
end

Instance Method Details

#allObject



29
30
31
# File 'lib/fluent-query/drivers/result.rb', line 29

def all
    not_implemented
end

#countObject



84
85
86
# File 'lib/fluent-query/drivers/result.rb', line 84

def count
    not_implemented
end

#eachObject



65
66
67
# File 'lib/fluent-query/drivers/result.rb', line 65

def each
    not_implemented
end

#free!Object



93
94
95
# File 'lib/fluent-query/drivers/result.rb', line 93

def free!
    not_implemented
end

#hashObject



56
57
58
# File 'lib/fluent-query/drivers/result.rb', line 56

def hash
    not_implemented
end

#oneObject



38
39
40
# File 'lib/fluent-query/drivers/result.rb', line 38

def one
    not_implemented
end

#repeat!Object



75
76
77
# File 'lib/fluent-query/drivers/result.rb', line 75

def repeat!
    not_implemented
end

#singleObject



47
48
49
# File 'lib/fluent-query/drivers/result.rb', line 47

def single
    not_implemented
end