egirlskey/src/queue/index.ts

16 lines
298 B
TypeScript
Raw Normal View History

2018-04-04 14:12:35 +00:00
import http from './processors/http';
2018-05-07 09:20:15 +00:00
import { ILocalUser } from '../models/user';
2018-04-04 14:12:35 +00:00
2018-07-25 23:11:47 +00:00
export function createHttpJob(data: any) {
2018-07-27 09:50:15 +00:00
return http({ data }, () => {});
2018-04-04 14:12:35 +00:00
}
2018-06-18 05:28:43 +00:00
export function deliver(user: ILocalUser, content: any, to: any) {
2018-07-25 23:11:47 +00:00
createHttpJob({
2018-04-05 14:24:51 +00:00
type: 'deliver',
user,
content,
to
2018-07-25 23:11:47 +00:00
});
2018-04-05 14:24:51 +00:00
}