Class: Async::Container::Notify::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/async/container/notify/client.rb

Direct Known Subclasses

Console, Pipe, Socket

Instance Method Summary collapse

Instance Method Details

#error!(text, **message) ⇒ Object

Notify the parent controller of an error condition.



71
72
73
# File 'lib/async/container/notify/client.rb', line 71

def error!(text, **message)
	send(status: text, **message)
end

#ready!(**message) ⇒ Object

Notify the parent controller that the child has become ready, with a brief status message.



30
31
32
# File 'lib/async/container/notify/client.rb', line 30

def ready!(**message)
	send(ready: true, **message)
end

#reloading!(**message) ⇒ Object

Notify the parent controller that the child is reloading.



36
37
38
39
40
41
42
# File 'lib/async/container/notify/client.rb', line 36

def reloading!(**message)
	message[:ready] = false
	message[:reloading] = true
	message[:status] ||= "Reloading..."
	
	send(**message)
end

#restarting!(**message) ⇒ Object

Notify the parent controller that the child is restarting.



46
47
48
49
50
51
52
# File 'lib/async/container/notify/client.rb', line 46

def restarting!(**message)
	message[:ready] = false
	message[:reloading] = true
	message[:status] ||= "Restarting..."
	
	send(**message)
end

#status!(text) ⇒ Object

Notify the parent controller of a status change.



64
65
66
# File 'lib/async/container/notify/client.rb', line 64

def status!(text)
	send(status: text)
end

#stopping!(**message) ⇒ Object

Notify the parent controller that the child is stopping.



56
57
58
59
60
# File 'lib/async/container/notify/client.rb', line 56

def stopping!(**message)
	message[:stopping] = true
	
	send(**message)
end