Skip to content

Commit

Permalink
tagging release 3.291
Browse files Browse the repository at this point in the history
  • Loading branch information
dxcity committed Jun 15, 2020
1 parent e3cce8e commit 4077449
Show file tree
Hide file tree
Showing 46 changed files with 70 additions and 45 deletions.
4 changes: 4 additions & 0 deletions ReleaseNotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

QDS 3.291:

* [QD-1239] New order sources glbx, ntv and xeur

QDS 3.290:

* [QD-1238] Add getZoneId to Timing instances
Expand Down
2 changes: 1 addition & 1 deletion auth/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
21 changes: 21 additions & 0 deletions dxfeed-api/src/main/java/com/dxfeed/event/market/OrderSource.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@ public final class OrderSource extends IndexedEventSource {
*/
public static final OrderSource NTV = new OrderSource("NTV", PUB_ORDER);

/**
* NASDAQ Total View. Record for price level book.
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
* source and the corresponding subscription can be observed via {@link DXPublisher}.
*/
public static final OrderSource ntv = new OrderSource("ntv", PUB_ORDER);

/**
* NASDAQ Futures Exchange.
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
Expand Down Expand Up @@ -260,6 +267,13 @@ public final class OrderSource extends IndexedEventSource {
*/
public static final OrderSource GLBX = new OrderSource("GLBX", PUB_ORDER | PUB_ANALYTIC_ORDER);

/**
* CME Globex. Record for price level book.
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
* source and the corresponding subscription can be observed via {@link DXPublisher}.
*/
public static final OrderSource glbx = new OrderSource("glbx", PUB_ORDER);

/**
* Eris Exchange group of companies.
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
Expand All @@ -274,6 +288,13 @@ public final class OrderSource extends IndexedEventSource {
*/
public static final OrderSource XEUR = new OrderSource("XEUR", PUB_ORDER);

/**
* Eurex Exchange. Record for price level book.
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
* source and the corresponding subscription can be observed via {@link DXPublisher}.
*/
public static final OrderSource xeur = new OrderSource("xeur", PUB_ORDER);

/**
* CBOE Futures Exchange.
* {@link Order} events are {@link #isPublishable(Class) publishable} on this
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-bin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-codegen-verify/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxfeed-codegen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ public void buildScheme(SchemeBuilder builder) {
builder.addRequiredField("Profile", "Description", SerialFieldType.UTF_CHAR_ARRAY);
builder.addOptionalField("Profile", "StatusReason", SerialFieldType.UTF_CHAR_ARRAY, "Profile", "StatusReason", true);

for (String suffix : SystemProperties.getProperty("com.dxfeed.event.market.impl.Order.suffixes", "|#NTV|#NFX|#ESPD|#XNFI|#ICE|#ISE|#DEA|#DEX|#BYX|#BZX|#BATE|#CHIX|#CEUX|#BXTR|#IST|#BI20|#ABE|#FAIR|#GLBX|#ERIS|#XEUR|#CFE|#SMFE").split("\\|")) {
for (String suffix : SystemProperties.getProperty("com.dxfeed.event.market.impl.Order.suffixes", "|#NTV|#ntv|#NFX|#ESPD|#XNFI|#ICE|#ISE|#DEA|#DEX|#BYX|#BZX|#BATE|#CHIX|#CEUX|#BXTR|#IST|#BI20|#ABE|#FAIR|#GLBX|#glbx|#ERIS|#XEUR|#xeur|#CFE|#SMFE").split("\\|")) {
String recordName = "Order" + suffix;
builder.addRequiredField(recordName, "Void", SerialFieldType.VOID, SchemeFieldTime.FIRST_TIME_INT_FIELD);
builder.addRequiredField(recordName, "Index", SerialFieldType.COMPACT_INT, SchemeFieldTime.SECOND_TIME_INT_FIELD);
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-ipf-filter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxfeed-news/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxfeed-ondemand/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxfeed-plotter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxfeed-promise/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 2 additions & 2 deletions dxfeed-samples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>dxfeed-samples</artifactId>
<version>3.290</version>
<version>3.291</version>
<packaging>jar</packaging>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-viewer-installer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-viewer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxfeed-webservice-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxfeed-webservice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion dxlib-benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxlib-qd-sandbox/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion dxlib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion license/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion mars-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion mars/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<groupId>com.devexperts.qd</groupId>
<artifactId>QD</artifactId>
<packaging>pom</packaging>
<version>3.290</version>
<version>3.291</version>

<inceptionYear>2002</inceptionYear>
<organization>
Expand Down
2 changes: 1 addition & 1 deletion proto-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion proto-ssl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion proto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-dataextractor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion qd-logger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-nio/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-rmi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-sample/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-samplecert/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-servlet/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-stripe/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion qd-tools/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<parent>
<artifactId>QD</artifactId>
<groupId>com.devexperts.qd</groupId>
<version>3.290</version>
<version>3.291</version>
<relativePath>../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
Expand Down
Loading

0 comments on commit 4077449

Please sign in to comment.