Skip to content

Commit

Permalink
fixup! feat!: add proposal for new discovery API
Browse files Browse the repository at this point in the history
  • Loading branch information
JKRhb committed Oct 23, 2023
1 parent 3466ea2 commit 08c064e
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions packages/core/src/wot-impl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,17 @@ class ThingDiscoveryProcess {

#filter: ThingFilter;



constructor(filter?: ThingFilter) {
this.#filter = filter ?? {};
};
}

stop(): void {
stop(): void {
this.#done = true;
}

// TODO: Implement AsyncIterable
// async iterable<ThingDescription>;
};
}

export default class WoTImpl {
private srv: Servient;
Expand Down

0 comments on commit 08c064e

Please sign in to comment.