Windchill 10.0 M030 を使用しています。いくつかのアクションをキャプチャする Windchill サービスを作成しました。削除、チェックイン、および状態変更イベントのキャプチャは完了しましたが、オブジェクトのリビジョン イベントをキャプチャする方法がわかりません。誰かが私を助けることができますか?
いくつかのサンプル コード スニペットが役立ちます。正常に動作しているイベントは次のとおりです。
public void notifyEvent(KeyedEvent event) throws RemoteException,
WTException {
if (event instanceof PersistenceManagerEvent) {
notifyEvent((PersistenceManagerEvent) event);
}
if (event instanceof WorkInProgressServiceEvent) {
notifyEvent((WorkInProgressServiceEvent) event);
}
if (event instanceof EPMWorkspaceManagerEvent) {
notifyEvent((EPMWorkspaceManagerEvent) event);
}
if (event instanceof LifeCycleServiceEvent) {
notifyEvent((LifeCycleServiceEvent) event);
}
}
このようにキャプチャされる改訂イベントのような別のイベントはありますか? どうやってやるの?
ありがとうございました。