Class: Semian::UnprotectedResource

Inherits:
Object
  • Object
show all
Defined in:
lib/semian/unprotected_resource.rb

Overview

This class acts as a replacement for ‘ProtectedResource` when the semian configuration of an `Adapter` is missing or explicitly disabled

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ UnprotectedResource

Returns a new instance of UnprotectedResource.



7
8
9
# File 'lib/semian/unprotected_resource.rb', line 7

def initialize(name)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



5
6
7
# File 'lib/semian/unprotected_resource.rb', line 5

def name
  @name
end

Instance Method Details

#acquire {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



18
19
20
# File 'lib/semian/unprotected_resource.rb', line 18

def acquire(*)
  yield self
end

#countObject



22
23
24
# File 'lib/semian/unprotected_resource.rb', line 22

def count
  0
end

#destroyObject



15
16
# File 'lib/semian/unprotected_resource.rb', line 15

def destroy
end

#mark_failed(_error) ⇒ Object



37
38
# File 'lib/semian/unprotected_resource.rb', line 37

def mark_failed(_error)
end

#mark_successObject



40
41
# File 'lib/semian/unprotected_resource.rb', line 40

def mark_success
end

#request_allowed?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/semian/unprotected_resource.rb', line 33

def request_allowed?
  true
end

#resetObject



30
31
# File 'lib/semian/unprotected_resource.rb', line 30

def reset
end

#semidObject



26
27
28
# File 'lib/semian/unprotected_resource.rb', line 26

def semid
  0
end

#ticketsObject



11
12
13
# File 'lib/semian/unprotected_resource.rb', line 11

def tickets
  -1
end