Class: Puma::NullIO

Inherits:
Object
  • Object
show all
Defined in:
lib/puma/null_io.rb

Overview

Provides an IO-like object that always appears to contain no data. Used as the value for rack.input when the request has no body.

Instance Method Summary collapse

Instance Method Details

#closeObject



28
29
# File 'lib/puma/null_io.rb', line 28

def close
end

#closed?Boolean

This is used as singleton class, so can't have state.

Returns:

  • (Boolean)


57
58
59
# File 'lib/puma/null_io.rb', line 57

def closed?
  false
end

#eachObject



16
17
# File 'lib/puma/null_io.rb', line 16

def each
end

#eof?Boolean

Returns:

  • (Boolean)


35
36
37
# File 'lib/puma/null_io.rb', line 35

def eof?
  true
end

#flushObject



52
53
54
# File 'lib/puma/null_io.rb', line 52

def flush
  self
end

#getsObject



8
9
10
# File 'lib/puma/null_io.rb', line 8

def gets
  nil
end

#puts(*ary) ⇒ Object



46
47
# File 'lib/puma/null_io.rb', line 46

def puts(*ary)
end

#read(count = nil, _buffer = nil) ⇒ Object

Mimics IO#read with no data.



21
22
23
# File 'lib/puma/null_io.rb', line 21

def read(count = nil, _buffer = nil)
  count && count > 0 ? nil : ""
end

#rewindObject



25
26
# File 'lib/puma/null_io.rb', line 25

def rewind
end

#sizeObject



31
32
33
# File 'lib/puma/null_io.rb', line 31

def size
  0
end

#stringObject



12
13
14
# File 'lib/puma/null_io.rb', line 12

def string
  ""
end

#syncObject



39
40
41
# File 'lib/puma/null_io.rb', line 39

def sync
  true
end

#sync=(v) ⇒ Object



43
44
# File 'lib/puma/null_io.rb', line 43

def sync=(v)
end

#write(*ary) ⇒ Object



49
50
# File 'lib/puma/null_io.rb', line 49

def write(*ary)
end