コード例 #1
0
ファイル: Message.java プロジェクト: kenwudi/helix-1
 /**
  * Set the session identifier of the node that executes the message
  *
  * @param exeSessionId session identifier
  */
 public void setExecuteSessionId(String exeSessionId) {
   _record.setSimpleField(Attributes.EXE_SESSION_ID.toString(), exeSessionId);
 }
コード例 #2
0
ファイル: Message.java プロジェクト: kenwudi/helix-1
 /**
  * Get the session identifier of the node that executes the message
  *
  * @return session identifier
  */
 public String getExecutionSessionId() {
   return _record.getSimpleField(Attributes.EXE_SESSION_ID.toString());
 }