Module: ConvenientService::Service::Plugins::HasJSendResultStatusCheckShortSyntax::Concern Private

Includes:
ConvenientService::Support::Concern
Defined in:
lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb

Overview

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

Since:

  • 1.0.0

Class Method Summary collapse

Methods included from ConvenientService::Support::Concern

included

Class Method Details

.error?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)

Since:

  • 1.0.0



26
27
28
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 26

def error?(...)
  result(...).error?
end

.failure?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)

Since:

  • 1.0.0



33
34
35
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 33

def failure?(...)
  result(...).failure?
end

.not_error?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)

Since:

  • 1.0.0



47
48
49
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 47

def not_error?(...)
  result(...).not_error?
end

.not_failure?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)

Since:

  • 1.0.0



54
55
56
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 54

def not_failure?(...)
  result(...).not_failure?
end

.not_ok?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)

Since:

  • 1.0.0



68
69
70
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 68

def not_ok?(...)
  result(...).not_success?
end

.not_success?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)

Since:

  • 1.0.0



40
41
42
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 40

def not_success?(...)
  result(...).not_success?
end

.ok?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)

Since:

  • 1.0.0



61
62
63
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 61

def ok?(...)
  result(...).success?
end

.success?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)

Since:

  • 1.0.0



19
20
21
# File 'lib/convenient_service/service/plugins/has_j_send_result_status_check_short_syntax/concern.rb', line 19

def success?(...)
  result(...).success?
end