This commit is contained in:
Dima
2020-11-04 00:03:22 +03:00
committed by GitHub
parent 6ebba3242d
commit 87af2bbe56
14 changed files with 196 additions and 226 deletions

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
import {Service} from "./callService";
import {Service} from "./service";
import {Particle} from "./particle";
// TODO put state with wasm file in each created FluenceClient
@ -30,7 +30,7 @@ export function setCurrentParticleId(particle: string | undefined) {
currentParticle = particle;
}
export function addParticle(particle: Particle): void {
export function enqueueParticle(particle: Particle): void {
particlesQueue.push(particle);
}