defined in <a href="https://github.com/angular/angular/tree/2.0.0-alpha.33/modules/angular2/src/http/backends/mock_backend.ts#L99-L228">angular2/src/http/backends/mock_backend.ts (line 99)</a>
This property only exists in the mock implementation, not in real Backends.
.l-sub-section
h3 connectionsArray
:markdown
An array representation of `connections`. This array will be updated with each connection that
is created by this backend.
This property only exists in the mock implementation, not in real Backends.
.l-sub-section
h3 pendingConnections
:markdown
<a href='../core/EventEmitter-class.html'><code>EventEmitter</code></a> of <a href='MockConnection-class.html'><code>MockConnection</code></a> instances that haven't yet been resolved (i.e.
with a `readyState`
less than 4). Used internally to verify that no connections are pending via the
`verifyNoPendingRequests` method.
This property only exists in the mock implementation, not in real Backends.
.l-sub-section
h3 verifyNoPendingRequests
pre.prettyprint
code.
verifyNoPendingRequests()
:markdown
Checks all connections, and raises an exception if any connection has not received a response.
This method only exists in the mock implementation, not in real Backends.
.l-sub-section
h3 resolveAllConnections
pre.prettyprint
code.
resolveAllConnections()
:markdown
Can be used in conjunction with `verifyNoPendingRequests` to resolve any not-yet-resolve
connections, if it's expected that there are connections that have not yet received a response.
This method only exists in the mock implementation, not in real Backends.
.l-sub-section
h3 createConnection
pre.prettyprint
code.
createConnection(req: Request)
:markdown
Creates a new <a href='MockConnection-class.html'><code>MockConnection</code></a>. This is equivalent to calling `new
MockConnection()`, except that it also will emit the new `Connection` to the `connections`
emitter of this `MockBackend` instance. This method will usually only be used by tests