Sha256: 67533677918853dac1cac2e116bf2e2ffb98df052a9b22132f5b70b8179ba17d

Contents?: true

Size: 701 Bytes

Versions: 3

Compression:

Stored size: 701 Bytes

Contents

# frozen_string_literal: true

require 'global_registry_bindings/workers/push_entity_worker'

module GlobalRegistry #:nodoc:
  module Bindings #:nodoc:
    module Model #:nodoc:
      module PushEntity
        extend ActiveSupport::Concern

        included do
          after_commit :push_entity_to_global_registry_async, on: (global_registry_entity.push_on - %i[destroy])
        end

        def push_entity_to_global_registry_async
          return if global_registry_entity.condition?(:if)
          return unless global_registry_entity.condition?(:unless)
          ::GlobalRegistry::Bindings::Workers::PushEntityWorker.perform_async(self.class.to_s, id)
        end
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
global-registry-bindings-0.6.2 lib/global_registry_bindings/model/push_entity.rb
global-registry-bindings-0.6.1 lib/global_registry_bindings/model/push_entity.rb
global-registry-bindings-0.6.0 lib/global_registry_bindings/model/push_entity.rb