Skip to content

Horizon ​

The Horizon plugin carries Manatee’s context traffic over a VMware Horizon virtual channel, so a Manatee running inside a Horizon session can share context with the Manatee on the client machine.

Starting the plugin ​

js
Plugin.start("Horizon", "v2.0.0", {
  channelName: "SIRCCOW",
  isAgent: true
});
optiondefaultdescription
channelName"SIRCCOW"the name of the Horizon virtual channel to open
isAgentwhether the Horizon agent is installed on the machinewhether this Manatee is the agent side of the channel or the client side

isAgent is detected from the registry, so both sides of a normal setup can start the plugin with no configuration at all:

js
Plugin.start("Horizon", "v2.0.0", {});

Stopping the plugin ​

js
Plugin.stop("Horizon", "v2.0.0");