コード例 #1
0
ファイル: LiveInstance.java プロジェクト: kanakb/helix
 /**
  * Instantiate with an participant identifier
  *
  * @param id participant identifier
  */
 public LiveInstance(ParticipantId id) {
   super(id.toString());
 }
コード例 #2
0
ファイル: LiveInstance.java プロジェクト: kanakb/helix
 /**
  * Get the id of this participant
  *
  * @return participant id
  */
 public ParticipantId getParticipantId() {
   return ParticipantId.from(getInstanceName());
 }