func (r *RoomFactory) Load(id string) _interface.IRoom {
    load, ok := r.pool.Load(id)
    if ok {
        return load.(*user.Room)
    }