This is the archived documentation for Angular v6. Please visit angular.io to see documentation for the current version of Angular.

ConnectionBackend

Abstract class from which real backends are derived.

See more...

Deprecated: see https://angular.io/guide/http

      
      abstract class ConnectionBackend {
  abstract createConnection(request: any): Connection
}
    

Description

The primary purpose of a ConnectionBackend is to create new connections to fulfill a given Request.

Methods

abstract createConnection(request: any): Connection
      
      abstract createConnection(request: any): Connection
    

Parameters

request

Type: any.

Returns

Connection