The goog.net.xpc.NativeMessagingTransport Class

goog.net.xpc.NativeMessagingTransport
> goog.net.xpc.Transport
> goog.Disposable

goog.net.xpc.NativeMessagingTransport(channel, peerHostname, opt_domHelper, opt_oneSidedHandshake, opt_protocolVersion)

The native messaging transport Uses document.postMessage() to send messages to other documents. Receiving is done by listening on 'message'-events on the document.

channel {goog.net.xpc.CrossPageChannel}
The channel this transport belongs to.
peerHostname {string}
The hostname (protocol, domain, and port) of the peer.
opt_domHelper {goog.dom.DomHelper=}
The dom helper to use for finding the correct window/document.
opt_oneSidedHandshake {boolean=}
If this is true, only the outer transport sends a SETUP message and expects a SETUP_ACK. The inner transport goes connected when it receives the SETUP.
opt_protocolVersion {number=}
Which version of its setup protocol the transport should use. The default is '2'.

.addOnDisposeCallback(callback, opt_scope)

Inherited from goog.Disposable .

Invokes a callback function when this object is disposed. Callbacks are invoked in the order in which they were added.

callback {!Function}
The callback function.
opt_scope {Object=}
An optional scope to call the callback in.

.connect()

Connects this transport.

.creationStack {string}

Inherited from goog.Disposable .

If monitoring the goog.Disposable instances is enabled, stores the creation stack trace of the Disposable instance.

.dispose()

Inherited from goog.Disposable .

Disposes of the object. If the object hasn't already been disposed of, calls {@link #disposeInternal}. Classes that extend {@code goog.Disposable} should override {@link #disposeInternal} in order to delete references to COM objects, DOM nodes, and other disposable objects. Reentrant.

returns {void}
Nothing.

.disposeInternal()

.getName()

Inherited from goog.net.xpc.Transport .

Return the transport name.

returns {string}
the transport name.

.getType()

Inherited from goog.net.xpc.Transport .

returns {number}
The transport type identifier.

.getWindow()

Inherited from goog.net.xpc.Transport .

Returns the window associated with this transport instance.

returns {Window}
The window to use.

.isDisposed()

Inherited from goog.Disposable .

returns {boolean}
Whether the object has been disposed of.

.registerDisposable(disposable)

Inherited from goog.Disposable .

Associates a disposable object with this object so that they will be disposed together.

disposable {goog.disposable.IDisposable}
that will be disposed when this object is disposed.

.send(service, payload)

Sends a message.

service {string}
The name off the service the message is to be delivered to.
payload {string}
The message content.

.transportServiceHandler(payload)

Handles transport service messages.

payload {string}
The message content.