MCPcopy Create free account
hub / github.com/AutoCodeStack/ios-device-farm / constructor

Method constructor

public/static/js/renderer/pipeline.js:3–7  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1// Pipeline to manage the flow of frames
2class Pipeline {
3 constructor() {
4 this.back = new BackFrame();
5 this.mid = new FrontFrame("mid");
6 this.front = new FrontFrame("front");
7 }
8
9 push(blob) {
10 this.back.swap(blob);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected