Package org.kie.remote
Interface RemoteKieSession
-
- All Superinterfaces:
AutoCloseable,Closeable,RemoteEntryPoint,RemoteStatefulSession,RemoteWorkingMemory,UpdatableSession
- All Known Implementing Classes:
RemoteKieSessionImpl
public interface RemoteKieSession extends Closeable, RemoteEntryPoint, RemoteStatefulSession, UpdatableSession
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemoteEntryPointgetEntryPoint(String name)CompletableFuture<String>getKJarGAV()CompletableFuture<Boolean>updateKJarGAV(String kjar)-
Methods inherited from interface org.kie.remote.RemoteEntryPoint
delete, insert, update
-
Methods inherited from interface org.kie.remote.RemoteStatefulSession
fireAllRules, fireUntilHalt, halt
-
Methods inherited from interface org.kie.remote.RemoteWorkingMemory
getEntryPointId, getFactCount, getObject, getObjects, getObjects, getObjects
-
-
-
-
Method Detail
-
getEntryPoint
RemoteEntryPoint getEntryPoint(String name)
-
getKJarGAV
CompletableFuture<String> getKJarGAV()
- Specified by:
getKJarGAVin interfaceUpdatableSession
-
updateKJarGAV
CompletableFuture<Boolean> updateKJarGAV(String kjar)
- Specified by:
updateKJarGAVin interfaceUpdatableSession
-
-