class Rooibos::Message::Open

Signals that a file or URL was successfully opened.

This message arrives after Command.open completes with exit status 0. Non-zero exits produce Message::Error instead.

Pattern Matching

case message
in { type: :open, envelope: path }
  model.with(status: "Opened #{path}")
end