You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
634 B
29 lines
634 B
export enum AnalyticsMessageMethod { |
|
TASK = 'TASK', |
|
TASK_RESULT = 'TASK_RESULT' |
|
} |
|
|
|
export class AnalyticsMessage { |
|
public constructor( |
|
public method: AnalyticsMessageMethod, |
|
public payload?: any, |
|
public requestId?: number |
|
) { |
|
|
|
} |
|
|
|
public toObject() { |
|
return { |
|
method: this.method, |
|
payload: this.payload, |
|
requestId: this.requestId |
|
}; |
|
} |
|
|
|
static fromObject(obj: any): AnalyticsMessage { |
|
if(obj.method === undefined) { |
|
throw new Error('No method in obj:' + obj); |
|
} |
|
return new AnalyticsMessage(obj.method, obj.payload, obj.requestId); |
|
} |
|
} |