Class: Quark::Quark::HTTPRequest
Constant Summary
DatawireQuarkCore::Static::Unassigned
Instance Method Summary
collapse
_lazy_statics, static, unlazy_statics
#to_s
Constructor Details
Returns a new instance of HTTPRequest.
1989
1990
1991
1992
1993
|
# File 'lib/quark.rb', line 1989
def initialize()
self.__init_fields__
nil
end
|
Instance Method Details
#__init_fields__ ⇒ Object
2046
2047
2048
2049
2050
|
# File 'lib/quark.rb', line 2046
def __init_fields__()
nil
end
|
#getBody ⇒ Object
2022
2023
2024
2025
2026
|
# File 'lib/quark.rb', line 2022
def getBody()
raise NotImplementedError, '`HTTPRequest.getBody` is an abstract method'
nil
end
|
2034
2035
2036
2037
2038
|
# File 'lib/quark.rb', line 2034
def (key)
raise NotImplementedError, '`HTTPRequest.getHeader` is an abstract method'
nil
end
|
2040
2041
2042
2043
2044
|
# File 'lib/quark.rb', line 2040
def ()
raise NotImplementedError, '`HTTPRequest.getHeaders` is an abstract method'
nil
end
|
#getMethod ⇒ Object
2010
2011
2012
2013
2014
|
# File 'lib/quark.rb', line 2010
def getMethod()
raise NotImplementedError, '`HTTPRequest.getMethod` is an abstract method'
nil
end
|
#getUrl ⇒ Object
1998
1999
2000
2001
2002
|
# File 'lib/quark.rb', line 1998
def getUrl()
raise NotImplementedError, '`HTTPRequest.getUrl` is an abstract method'
nil
end
|
#setBody(data) ⇒ Object
2016
2017
2018
2019
2020
|
# File 'lib/quark.rb', line 2016
def setBody(data)
raise NotImplementedError, '`HTTPRequest.setBody` is an abstract method'
nil
end
|
2028
2029
2030
2031
2032
|
# File 'lib/quark.rb', line 2028
def (key, value)
raise NotImplementedError, '`HTTPRequest.setHeader` is an abstract method'
nil
end
|
#setMethod(method) ⇒ Object
2004
2005
2006
2007
2008
|
# File 'lib/quark.rb', line 2004
def setMethod(method)
raise NotImplementedError, '`HTTPRequest.setMethod` is an abstract method'
nil
end
|