Class: Atatus::Context Private

Inherits:
Object
  • Object
show all
Defined in:
lib/atatus/context.rb,
lib/atatus/context/user.rb,
lib/atatus/context/company.rb,
lib/atatus/context/request.rb,
lib/atatus/context/response.rb,
lib/atatus/context/request/url.rb,
lib/atatus/context/request/socket.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Defined Under Namespace

Classes: Company, Framework, Request, Response, Service, User

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(custom: {}, labels: {}, user: nil, service: nil) ⇒ Context

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Context.



30
31
32
33
34
35
# File 'lib/atatus/context.rb', line 30

def initialize(custom: {}, labels: {}, user: nil, service: nil)
  @custom = custom
  @labels = labels
  @user = user || User.new
  @service = service
end

Instance Attribute Details

#companyObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



42
43
44
# File 'lib/atatus/context.rb', line 42

def company
  @company
end

#customObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



41
42
43
# File 'lib/atatus/context.rb', line 41

def custom
  @custom
end

#labelsObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



41
42
43
# File 'lib/atatus/context.rb', line 41

def labels
  @labels
end

#requestObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



40
41
42
# File 'lib/atatus/context.rb', line 40

def request
  @request
end

#responseObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



40
41
42
# File 'lib/atatus/context.rb', line 40

def response
  @response
end

#response_bodyObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



42
43
44
# File 'lib/atatus/context.rb', line 42

def response_body
  @response_body
end

#serviceObject (readonly)

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



41
42
43
# File 'lib/atatus/context.rb', line 41

def service
  @service
end

#userObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



40
41
42
# File 'lib/atatus/context.rb', line 40

def user
  @user
end

Instance Method Details

#empty?Boolean

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns:

  • (Boolean)


44
45
46
47
48
49
50
51
52
# File 'lib/atatus/context.rb', line 44

def empty?
  return false if labels.any?
  return false if custom.any?
  return false if user.any?
  return false if service
  return false if request || response

  true
end

#set_service(framework_name: nil, framework_version: nil) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



54
55
56
57
58
# File 'lib/atatus/context.rb', line 54

def set_service(framework_name: nil, framework_version: nil)
  @service = Service.new(
    Framework.new(framework_name, framework_version)
  )
end