X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=bundles%2Forg.simantics.db%2Fsrc%2Forg%2Fsimantics%2Fdb%2FAsyncRequestProcessor.java;h=ded8292faab41b102d8ef09484975ee620f077fd;hp=3f17927e223693752142a51645fdf7565412765a;hb=0d9b90834ce56b292c00b1a39850ed842c3e4d42;hpb=e5db6157fd8722c946613d4e46d7aaf6bfa92609 diff --git a/bundles/org.simantics.db/src/org/simantics/db/AsyncRequestProcessor.java b/bundles/org.simantics.db/src/org/simantics/db/AsyncRequestProcessor.java index 3f17927e2..ded8292fa 100644 --- a/bundles/org.simantics.db/src/org/simantics/db/AsyncRequestProcessor.java +++ b/bundles/org.simantics.db/src/org/simantics/db/AsyncRequestProcessor.java @@ -64,14 +64,7 @@ import org.simantics.db.request.WriteOnly; * @see MergingGraphRequestProcessor * @see RequestProcessor */ -public interface AsyncRequestProcessor extends ServiceLocator, AsyncRequestProcessorSpecific { - - Resource getRootLibrary(); - - /** - * @return the {@link Session} for which this processor is based on. - */ - Session getSession(); +public interface AsyncRequestProcessor extends RequestProcessor, AsyncRequestProcessorSpecific { void async(ReadInterface r, Procedure procedure); void async(ReadInterface r, AsyncProcedure procedure); @@ -80,9 +73,4 @@ public interface AsyncRequestProcessor extends ServiceLocator, AsyncRequestProce void async(ReadInterface r, AsyncListener procedure); void async(ReadInterface r, SyncListener procedure); - void async(WriteInterface r); - void async(WriteInterface r, Procedure procedure); - - Object getModificationCounter(); - }