content/hifi-content/rebecca/LoadTest/usersTest.js
2022-02-14 02:04:11 +01:00

45 lines
No EOL
1.2 KiB
JavaScript

//
// avatarCounter.js
//
// Created by Rebecca Stankus on 07/09/2018.
// Copyright 2018 High Fidelity, Inc.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//
(function() {
var UPDATE_INTERVAL = 1000;
var request = Script.require('./modules/request.js').request;
var _this;
var AvatarCounter = function() {
_this = this;
};
AvatarCounter.prototype = {
interval: null,
preload: function(entityID) {
_this.entityID = entityID;
_this.interval = Script.setInterval(_this.update(), UPDATE_INTERVAL);
},
update: function() {
request("https://highfidelity.com/api/v1/domains/d7dc9a4c-6d90-4515-9d51-770aa1004f54", function (error, data) {
if (!error) {
Entities.editEntity(_this.entityID, { text: data.domain.online_users });
}
});
},
unload: function() {
if (_this.interval) {
Script.clearInterval(_this.interval);
}
}
};
return new AvatarCounter;
});