@dcos/mesos-client

1.0.0Β β€’Β PublicΒ β€’Β Published

Apache Mesos Client Build Status


πŸ‘©β€πŸ”¬ Please be aware that this package is still experimental β€” changes to the interface and underlying implementation are likely, and future development or maintenance is not guaranteed.


This package provides a nice way of connecting to the Mesos Event Stream API. It is a wrapper that uses @dcos/http-service to establish a connection and @dcos/recordio package to parse the incoming data and deliver it as a Rx.Observable.

Example

import { stream, request } from "@dcos/mesos-client";

stream({ type: "SUBSCRIBE" }).subscribe(
  value => console.log(value),
  error => console.log(error),
  () => console.log("complete")
);

request({ type: "GET_FLAGS" }).subscribe(
  value => console.log(value),
  error => console.log(error),
  () => console.log("complete")
);

stream opens a persistent connection to Mesos HTTP Operator Api Event Stream and returns rxjs Observable.

request makes a call to the Mesos HTTP Operator Api and returns response as an rxjs Observable.

Readme

Keywords

none

Package Sidebar

Install

npm i @dcos/mesos-client

Weekly Downloads

4

Version

1.0.0

License

Apache-2.0

Unpacked Size

161 kB

Total Files

22

Last publish

Collaborators

  • vacas5
  • mesosphere-frontend-ci
  • mesosphere-it
  • juliangieseke