]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.db.common/src/org/simantics/db/common/request/ResourceAsyncMultiRead.java
Multiple reader thread support for db client
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / request / ResourceAsyncMultiRead.java
1 /*******************************************************************************
2  * Copyright (c) 2007, 2010 Association for Decentralized Information Management
3  * in Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.db.common.request;
13
14 import org.simantics.db.Resource;
15 import org.simantics.db.request.AsyncMultiRead;
16
17 public abstract class ResourceAsyncMultiRead<T> implements AsyncMultiRead<T> {
18
19     final protected Resource resource;
20
21     @Override
22     public int hashCode() {
23         return resource.hashCode();
24     }
25
26     @Override
27     public boolean equals(Object object) {
28         if (this == object)
29             return true;
30         else if (object == null)
31             return false;
32         else if (getClass() != object.getClass())
33             return false;
34         ResourceAsyncMultiRead<?> r = (ResourceAsyncMultiRead<?>) object;
35         return resource.equals(r.resource);
36     }
37
38     public ResourceAsyncMultiRead(Resource resource) {
39         this.resource = resource;
40     }
41
42 }