2019-04-28 10:42:08 +00:00
|
|
|
import * as plugins from './smartuniverse.plugins';
|
2019-08-13 13:48:20 +00:00
|
|
|
import { ClientUniverseChannel } from './smartuniverse.classes.clientuniversechannel';
|
2019-04-28 10:42:08 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* a cache for clients
|
2019-04-30 17:16:03 +00:00
|
|
|
* keeps track of which messages have already been received
|
|
|
|
* good for deduplication in mesh environments
|
2019-04-28 10:42:08 +00:00
|
|
|
*/
|
2019-08-13 13:48:20 +00:00
|
|
|
export class ClientUniverseCache {
|
|
|
|
public channelMap = new plugins.lik.Objectmap<ClientUniverseChannel>();
|
|
|
|
}
|