module Kplay::Registry

Represents the registry of started pods

Public Class Methods

register(pod_name, pid) click to toggle source

Registers a pod started by given process

# File lib/kplay/registry.rb, line 10
def self.register(pod_name, pid)
end
registered?(pod_name) click to toggle source

Returns true if the pod is registered for any process

# File lib/kplay/registry.rb, line 25
def self.registered?(pod_name)
end
unregister(pod_name, pid) click to toggle source

Unregisters a pod started by given process

# File lib/kplay/registry.rb, line 15
def self.unregister(pod_name, pid)
end
unregister_all(pod_name) click to toggle source

Unregisters a pod for all processes

# File lib/kplay/registry.rb, line 20
def self.unregister_all(pod_name)
end