接口 ProcedureCallMemento
-
- 所有已知实现类:
ProcedureCallMementoImpl
public interface ProcedureCallMementoRepresents a "memento" (disconnected, externalizable form) of a ProcedureCall- 作者:
- Steve Ebersole
-
-
方法概要
所有方法 实例方法 抽象方法 默认方法 修饰符和类型 方法 说明 Map<String,Object>getHintsMap()Access to any hints associated with the memento.default ProcedureCallmakeProcedureCall(SessionImplementor session)Convert the memento back into an executable (connected) form.ProcedureCallmakeProcedureCall(SharedSessionContractImplementor session)Convert the memento back into an executable (connected) form.default ProcedureCallmakeProcedureCall(Session session)Convert the memento back into an executable (connected) form.
-
-
-
方法详细资料
-
makeProcedureCall
default ProcedureCall makeProcedureCall(Session session)
Convert the memento back into an executable (connected) form.- 参数:
session- The session to connect the procedure call to- 返回:
- The executable call
-
makeProcedureCall
default ProcedureCall makeProcedureCall(SessionImplementor session)
Convert the memento back into an executable (connected) form.- 参数:
session- The session to connect the procedure call to- 返回:
- The executable call
-
makeProcedureCall
ProcedureCall makeProcedureCall(SharedSessionContractImplementor session)
Convert the memento back into an executable (connected) form.- 参数:
session- The session to connect the procedure call to- 返回:
- The executable call
-
-