X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=bundles%2Forg.simantics.db.common%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fcommon%2Frequest%2FGenericReadBase2.java;fp=bundles%2Forg.simantics.db.common%2Fsrc%2Forg%2Fsimantics%2Fdb%2Fcommon%2Frequest%2FGenericReadBase2.java;h=cca1cbff17fe636da4065ce713c3d7bebb2d0bf4;hb=9882059f199454feafd1633e6f1b98e84b6f763e;hp=0000000000000000000000000000000000000000;hpb=f060a683d7907316ebb03c9fc95f7ba0ce52ee91;p=simantics%2Fplatform.git diff --git a/bundles/org.simantics.db.common/src/org/simantics/db/common/request/GenericReadBase2.java b/bundles/org.simantics.db.common/src/org/simantics/db/common/request/GenericReadBase2.java new file mode 100644 index 000000000..cca1cbff1 --- /dev/null +++ b/bundles/org.simantics.db.common/src/org/simantics/db/common/request/GenericReadBase2.java @@ -0,0 +1,63 @@ +/******************************************************************************* + * Copyright (c) 2007, 2010 Association for Decentralized Information Management + * in Industry THTH ry. + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v1.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v10.html + * + * Contributors: + * VTT Technical Research Centre of Finland - initial API and implementation + *******************************************************************************/ +package org.simantics.db.common.request; + +import org.simantics.db.AsyncRequestProcessor; +import org.simantics.db.RequestProcessor; +import org.simantics.db.exception.DatabaseException; +import org.simantics.db.procedure.AsyncListener; +import org.simantics.db.procedure.AsyncProcedure; +import org.simantics.db.procedure.Listener; +import org.simantics.db.procedure.Procedure; +import org.simantics.db.procedure.SyncListener; +import org.simantics.db.procedure.SyncProcedure; +import org.simantics.db.request.Read; +import org.simantics.db.request.ReadInterface; + +public abstract class GenericReadBase2 implements Read, ReadInterface { + + @Override + public void request(AsyncRequestProcessor processor, AsyncProcedure procedure) { + processor.asyncRequest(this, procedure); + } + + @Override + public void request(AsyncRequestProcessor processor, Procedure procedure) { + processor.asyncRequest(this, procedure); + } + + @Override + public void request(AsyncRequestProcessor processor, SyncProcedure procedure) { + processor.asyncRequest(this, procedure); + } + + @Override + public void request(AsyncRequestProcessor processor, AsyncListener procedure) { + processor.asyncRequest(this, procedure); + } + + @Override + public void request(AsyncRequestProcessor processor, Listener procedure) { + processor.asyncRequest(this, procedure); + } + + @Override + public void request(AsyncRequestProcessor processor, SyncListener procedure) { + processor.asyncRequest(this, procedure); + } + + @Override + public R request(RequestProcessor processor) throws DatabaseException { + return processor.syncRequest(this); + } + +}