A named window is explicitly created using a CREATE WINDOW statement, and can be referenced in other queries.
Named windows can be classed as input, output, or local. An input window can send and receive data through adapters. An output window can send data to an adapter. Both input and output windows are visible externally and can be subscribed to or queried. A local window is private and invisible externally. When a qualifier for the window is missing, it is presumed to be of type local.
Named Window Type | Receives Data From | Sends Data To | Visible Externally |
---|---|---|---|
input | Adapter or connector | Adapter or connector and other streams | Yes |
output | Other streams | Adapter or connector and other streams | Yes |
local | Other streams | Other streams | No |