How to close an HTTP connection?

Viewed 2300

I have this code:

this.http.get(url)
.subscribe(
  data => {

  },
  error=>{

  }
)

How I can close an HTTP connection?

1 Answers
Related