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

Add test on complete signal for WebSocket #103

@segabriel

Description

@segabriel

WebSocket API: https://github.com/scalecube/scalecube-services/wiki/Web-Socket-API

Also it should work with local services which respond in another thread, example:

  @Override
  public Mono<String> one(String one) {
    return Mono.just(one);
  }

==>

  @Override
  public Mono<String> one(String one) {
    return Mono.delay(Duration.ofNanos(1), Schedulers.elastic()).thenReturn(one);
  }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions