Skip to content
This repository was archived by the owner on Jan 6, 2023. It is now read-only.

Question about server errors #189

@kum-deepak

Description

@kum-deepak

By @cainaj, copied from #121 (comment)

Hi, I have a question about error handling with this library. I have something like:

startConnetionProcess() {
    this.connecting = true;
    this.pending = true;
    this.authService.getIdToken()
    .pipe(takeUntil(componentDestroyed(this)))
    .subscribe(token => {
      this.token = token;

      const stompConfig = {
        brokerURL: environment.webSocketUrl + '/api/listen',
        connectHeaders: {
          'token': this.token,
          topic: this.topic,
          env: this.env
        },
        debug(str) {
          console.log('STOMP: ' + str);
        }
      };
      this.connect(stompConfig);
    });
  }

where connect() calls a method that executes configure() and activate().

My problem comes when there is an error on the server side. If this connection is not established, I can see it if I have the debug option on my stompConfig config; however, inside of debug, i cannot call any functions apparently. I am using Angular 8. How can I handle an error? I haven't seen any references to error handling.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions