Skip to content

Commit

Permalink
add missing src/dummy-receive-endpoint.mjs from template
Browse files Browse the repository at this point in the history
  • Loading branch information
arlac77 committed Dec 6, 2020
1 parent 11110c8 commit c88e852
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/dummy-receive-endpoint.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import { Endpoint } from "./endpoint.mjs";

/**
* Dummy endpoints are used duiring construction of the endpoint mesh.
*
*/
export class DummyReceiveEndpoint extends Endpoint {
/**
* dummy does nothing by intention
*/
async receive() {}

/**
* @return {boolean} true
*/
get isIn() {
return true;
}

get isOpen() {
return true;
}

/**
* Indicate whatever we are a dummy endpoint.
* Dummy endpoints are used duiring construction of the endpoint mesh.
* @return {boolean} true
*/
get isDummy() {
return true;
}
}

0 comments on commit c88e852

Please sign in to comment.