我正在使用 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);
}
}
是否有任何单独的事件,如修改事件以这种方式被捕获?我怎样才能做到这一点?
谢谢你。