2016-02-18 19:59:34 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
2015-10-28 17:37:17 +00:00
|
|
|
|
2015-10-08 00:08:19 +00:00
|
|
|
'use strict';
|
|
|
|
|
2016-02-28 20:36:30 +00:00
|
|
|
import { objectTypes } from './constants';
|
2016-02-29 20:34:29 +00:00
|
|
|
import { createCollection, createMethods } from './util';
|
2015-10-08 00:08:19 +00:00
|
|
|
|
2016-02-28 21:07:05 +00:00
|
|
|
export class Results {
|
|
|
|
constructor() {
|
|
|
|
throw new TypeError('Illegal constructor');
|
|
|
|
}
|
|
|
|
}
|
2016-02-28 20:35:54 +00:00
|
|
|
|
2016-02-28 20:36:30 +00:00
|
|
|
createMethods(Results.prototype, objectTypes.RESULTS, [
|
2016-02-18 04:27:10 +00:00
|
|
|
'filtered',
|
2016-02-18 20:47:18 +00:00
|
|
|
'sorted',
|
2016-02-18 21:41:11 +00:00
|
|
|
'snapshot',
|
2015-10-19 19:06:47 +00:00
|
|
|
]);
|
2015-10-15 01:53:37 +00:00
|
|
|
|
2016-02-28 20:36:30 +00:00
|
|
|
export function create(realmId, info) {
|
2016-02-29 20:34:29 +00:00
|
|
|
return createCollection(Results.prototype, realmId, info);
|
2015-10-08 00:08:19 +00:00
|
|
|
}
|