Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Task/upgrade esper 8.8.0 (TODO use esper 8.9.0) #188

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
- Upgrade to use Esper 8.8 from Esper 8.4
- Remove: RPM package stuff
6 changes: 3 additions & 3 deletions perseo-main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,17 +69,17 @@
<dependency>
<groupId>com.espertech</groupId>
<artifactId>esper-runtime</artifactId>
<version>8.4.0</version>
<version>8.8.0</version>
</dependency>
<dependency>
<groupId>com.espertech</groupId>
<artifactId>esper-common</artifactId>
<version>8.4.0</version>
<version>8.8.0</version>
</dependency>
<dependency>
<groupId>com.espertech</groupId>
<artifactId>esper-compiler</artifactId>
<version>8.4.0</version>
<version>8.8.0</version>
</dependency>
<dependency>
<groupId>com.espertech</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@
import com.espertech.esper.common.client.EventType;
import com.espertech.esper.common.client.FragmentEventType;
import com.espertech.esper.common.client.PropertyAccessException;
// To be used with Esper 8.7
// import com.espertech.esper.common.client.type.EPTypeClass;
// import com.espertech.esper.common.client.type.EPType;
import com.espertech.esper.common.client.type.EPTypeClass;
import com.espertech.esper.common.client.type.EPType;
import java.util.Iterator;
import java.util.Map;

Expand Down Expand Up @@ -132,16 +131,15 @@ public java.util.Set<EventType> getDeepSuperTypesAsSet(){
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

// To be used with Esper 8.7
// @Override
// public EPTypeClass getUnderlyingEPType() {
// throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
// }
@Override
public EPTypeClass getUnderlyingEPType() {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}

// @Override
// public EPType getPropertyEPType(java.lang.String string) {
// throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
// }
@Override
public EPType getPropertyEPType(java.lang.String string) {
throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
}
};

@Override
Expand Down