Uses of Interface
org.kie.remote.RemoteFactHandle
-
Packages that use RemoteFactHandle Package Description org.kie.remote org.kie.remote.command org.kie.remote.impl -
-
Uses of RemoteFactHandle in org.kie.remote
Methods in org.kie.remote that return RemoteFactHandle Modifier and Type Method Description <T> RemoteFactHandle<T>RemoteEntryPoint. insert(T object)Inserts a new fact into this entry pointMethods in org.kie.remote with parameters of type RemoteFactHandle Modifier and Type Method Description <T> voidRemoteEntryPoint. delete(RemoteFactHandle<T> handle)Retracts the fact for which the given FactHandle was assigned regardless if it has been explicitly or logically inserted.<T> CompletableFuture<T>RemoteWorkingMemory. getObject(RemoteFactHandle<T> remoteFactHandle)<T> voidRemoteEntryPoint. update(RemoteFactHandle<T> handle, T object)Updates the fact for which the given FactHandle was assigned with the new fact set as the second parameter in this method. -
Uses of RemoteFactHandle in org.kie.remote.command
Methods in org.kie.remote.command that return RemoteFactHandle Modifier and Type Method Description RemoteFactHandleWorkingMemoryActionCommand. getFactHandle()RemoteFactHandleGetObjectCommand. getRemoteFactHandle()Constructors in org.kie.remote.command with parameters of type RemoteFactHandle Constructor Description DeleteCommand(RemoteFactHandle factHandle, String entryPoint)GetObjectCommand(RemoteFactHandle remoteFactHandle)InsertCommand(RemoteFactHandle factHandle, String entryPoint)UpdateCommand(RemoteFactHandle factHandle, Object obj, String entryPoint)WorkingMemoryActionCommand(RemoteFactHandle factHandle, String entryPoint) -
Uses of RemoteFactHandle in org.kie.remote.impl
Classes in org.kie.remote.impl that implement RemoteFactHandle Modifier and Type Class Description classRemoteFactHandleImplMethods in org.kie.remote.impl that return RemoteFactHandle Modifier and Type Method Description <T> RemoteFactHandle<T>RemoteEntryPointImpl. insert(T obj)Methods in org.kie.remote.impl with parameters of type RemoteFactHandle Modifier and Type Method Description <T> voidRemoteEntryPointImpl. delete(RemoteFactHandle<T> handle)<T> CompletableFuture<T>AbstractRemoteEntryPoint. getObject(RemoteFactHandle<T> remoteFactHandle)<T> voidRemoteEntryPointImpl. update(RemoteFactHandle<T> handle, T object)
-