Class: Altertable::Lakehouse::Adapters::Base
- Inherits:
-
Object
- Object
- Altertable::Lakehouse::Adapters::Base
show all
- Defined in:
- lib/altertable/lakehouse/adapters.rb,
sig/altertable/lakehouse/adapters.rbs
Instance Method Summary
collapse
-
#delete(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
-
#get(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
-
#initialize(base_url:, timeout:, open_timeout:, headers: {}) ⇒ Base
constructor
-
#post(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
Constructor Details
#initialize(base_url:, timeout:, open_timeout:, headers: {}) ⇒ Base
Returns a new instance of Base.
7
8
9
10
11
12
|
# File 'lib/altertable/lakehouse/adapters.rb', line 7
def initialize(base_url:, timeout:, open_timeout:, headers: {})
@base_url = base_url
@timeout = timeout
@open_timeout = open_timeout
@headers =
end
|
Instance Method Details
#delete(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
22
23
24
|
# File 'lib/altertable/lakehouse/adapters.rb', line 22
def delete(path, body: nil, params: {}, headers: {}, &_block)
raise NotImplementedError
end
|
#get(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
14
15
16
|
# File 'lib/altertable/lakehouse/adapters.rb', line 14
def get(path, body: nil, params: {}, headers: {}, &_block)
raise NotImplementedError
end
|
#post(path, body: nil, params: {}, headers: {}, &_block) ⇒ Response
18
19
20
|
# File 'lib/altertable/lakehouse/adapters.rb', line 18
def post(path, body: nil, params: {}, headers: {}, &_block)
raise NotImplementedError
end
|