fix(structure): format TypeScript
This commit is contained in:
@ -66,11 +66,7 @@ export class Universe {
|
||||
// adds messages
|
||||
const addMessageHandler = new Handler('PUT', request => {
|
||||
const requestBody: IServerPutMessageRequestBody = request.body;
|
||||
const message = new UniverseMessage(
|
||||
requestBody.message,
|
||||
requestBody.payload,
|
||||
|
||||
)
|
||||
const message = new UniverseMessage(requestBody.message, requestBody.payload);
|
||||
this.universeStore.addMessage(message);
|
||||
console.log(requestBody);
|
||||
return true;
|
||||
|
@ -10,7 +10,7 @@ export class UniverseChannel {
|
||||
* stores the channels that are available within the universe
|
||||
*/
|
||||
public static channelStore = new Objectmap();
|
||||
|
||||
|
||||
/**
|
||||
* creates new channels
|
||||
* @param channelArg the name of the topic
|
||||
@ -19,8 +19,8 @@ export class UniverseChannel {
|
||||
public static createChannel = (channelNameArg: string, passphraseArg: string) => {
|
||||
const newChannel = new UniverseChannel(channelNameArg, passphraseArg);
|
||||
return newChannel;
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
* the name of the channel
|
||||
*/
|
||||
|
@ -45,21 +45,18 @@ export class UniverseMessage {
|
||||
* @param messageArg
|
||||
* @param attachedPayloadArg
|
||||
*/
|
||||
constructor(
|
||||
messageArg: string,
|
||||
attachedPayloadArg: any
|
||||
) {
|
||||
constructor(messageArg: string, attachedPayloadArg: any) {
|
||||
this.timestamp = new TimeStamp();
|
||||
this.message = messageArg;
|
||||
this.attachedPayload = attachedPayloadArg;
|
||||
this.fallBackDestruction();
|
||||
}
|
||||
|
||||
public setUniverseStore (universeStoreArg: UniverseStore) {
|
||||
public setUniverseStore(universeStoreArg: UniverseStore) {
|
||||
this.universeStore = universeStoreArg;
|
||||
}
|
||||
|
||||
public setDestructionTimer (selfdestructAfterArg: number) {
|
||||
public setDestructionTimer(selfdestructAfterArg: number) {
|
||||
if (selfdestructAfterArg) {
|
||||
this.destructionTimer = new Timer(selfdestructAfterArg);
|
||||
this.destructionTimer.start();
|
||||
@ -71,13 +68,12 @@ export class UniverseMessage {
|
||||
} else {
|
||||
this.fallBackDestruction();
|
||||
}
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* prevents memory leaks if channels have no default
|
||||
* prevents memory leaks if channels have no default
|
||||
*/
|
||||
private fallBackDestruction () {
|
||||
private fallBackDestruction() {
|
||||
plugins.smartdelay.delayFor(1000).then(() => {
|
||||
if (!this.destructionTimer) {
|
||||
this.setDestructionTimer(6000);
|
||||
|
Reference in New Issue
Block a user