27 lines
713 B
Ruby
27 lines
713 B
Ruby
module VagrantPlugins
|
|
module CommandServe
|
|
module Client
|
|
class Terminal
|
|
# @params [String] endpoint for the core service
|
|
def initialize(server_endpoint)
|
|
@client = SDK::TerminalUIService::Stub.new(server_endpoint, :this_channel_is_insecure)
|
|
end
|
|
|
|
def self.load(raw_terminal)
|
|
t = SDK::Args::TerminalUI.decode(raw_terminal)
|
|
conn = Broker.instance.dial(t.stream_id)
|
|
self.new(conn.to_s)
|
|
end
|
|
|
|
# @params [Array] the content to print
|
|
def output(content)
|
|
req = SDK::TerminalUI::OutputRequest.new(
|
|
lines: content
|
|
)
|
|
@client.output(req)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|