Subscribe() method

The subscribe() method is used to manually subscribe to an Observable or Subject and receive data emitted by it.

Syntax:

observable.subscribe(
next?: (value: T) => void,
error?: (error: any) => void,
complete?: () => void
);

Features of Subscribe()

  • Manual Subscription: You have control over when to start and stop listening to the data stream.
  • Error Handling: You can provide an error handler function to handle any errors emitted by the Observable.
  • Complete Callback: You can specify a callback function to be executed when the Observable completes.
  • Ability to Perform Side Effects: You can perform additional actions or side effects based on the emitted values.
  • Custom Unsubscription: You can manually unsubscribe from the Observable to prevent memory leaks.

Example

JavaScript
//App.component.ts

import { Component } from '@angular/core';
import { Router } from '@angular/router';
import { Observable, Subscription, interval, of } from 'rxjs';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.scss'],
})
export class AppComponent {
    constructor(private router: Router) { }
    subscription!: Subscription;
    ngOnInit(): void {
        const observable$ = interval(1000);
        this.subscription = observable$.subscribe(
            (value) => {
                console.log(value);
            },
            (error) => {
                console.error(error);
            },
            () => {
                console.log('Observable completed');
            }
        );
    }
    ngOnDestroy() {
        this.subscription.unsubscribe();
    }
}

Output


In the above example, we have created an observable which emits a value for every second. And we have subscribed to the subscription and did a console log, to observe the values emitted by the observable created, And we have also unsubscribed to the subscription on ngOnDestroy() to avoid any memory leakage.

Difference Between subscribe() and async pipe.

In Angular, handling asynchronous data streams is an important task, and two primary methods for this are subscribe() and async pipe. Both approaches have their strengths and use cases. In this article, we will explore each method to help you understand when and how to use them effectively in your Angular applications.

Similar Reads

Subscribe() method

The subscribe() method is used to manually subscribe to an Observable or Subject and receive data emitted by it....

Async pipe

The async pipe is an Angular feature that simplifies the process of subscribing to and unsubscribing from observables in templates. It automatically manages the subscription lifecycle and updates the template with the emitted values....

Difference between subscribe() and async pipe

Async pipe Subscribe MethodAutomatically handles subscription and unsubscription. Manually create and manage the subscription object. Automatically updates the template with emitted values. Manually update the template with emitted values. Async pipe prevents memory leaks by auto-unsubscribing. Manual unsubscription is necessary to prevent leaks. Used for simple value display Used for Complex logic, error handling No direct error handling in the pipe, but can be combined with error handling operators Can handle errors explicitly in the error callback...

Conclusion

In conclusion, both subscribe() and the async pipe are valuable tools for handling asynchronous data in Angular applications. subscribe() offers flexibility and control, making it suitable for scenarios requiring custom logic and side effects. On the other hand, the async pipe simplifies template code, improves readability, and reduces the risk of memory leaks by automatically managing subscriptions and unsubscriptions. Understanding the differences between these two approaches will hep you to choose the most appropriate method for your specific use case, ultimately enhancing the efficiency and maintainability of your Angular codebase....