This is an automated email from the ASF dual-hosted git repository.
timothyjward pushed a change to branch feature/v1.1
in repository https://gitbox.apache.org/repos/asf/aries-typedevent.git
from d7e5bd6 Properly clear data structures when they are empty
new e6d4fdc Add support for Event History Configuration
new 7b6220a Add support for Records as events
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
org.apache.aries.typedevent.bus/bnd.bnd | 1 +
org.apache.aries.typedevent.bus/pom.xml | 32 ++-
.../aries/typedevent/bus/impl/EventConverter.java | 10 +-
.../aries/typedevent/bus/impl/EventSelector.java | 82 ++++++-
.../impl/{EventTask.java => RecordConverter.java} | 18 +-
.../aries/typedevent/bus/impl/TopicHistory.java | 72 ++++++
.../typedevent/bus/impl/TypedEventBusImpl.java | 6 +-
.../typedevent/bus/impl/TypedEventMonitorImpl.java | 210 +++++++++++++++-
.../typedevent/monitor/TypedEventMonitor.java | 156 ++++++++++++
.../aries/typedevent/bus/impl/RecordConverter.java | 102 ++++++++
.../typedevent/bus/osgi/RecordIntegrationTest.java | 272 +++++++++++++++++++++
.../bus/osgi/TypedEventMonitorIntegrationTest.java | 165 +++++++++++++
org.apache.aries.typedevent.bus/test.bndrun | 3 +-
pom.xml | 2 +-
typedevent-test-bom/pom.xml | 6 +
15 files changed, 1117 insertions(+), 20 deletions(-)
create mode 100644 org.apache.aries.typedevent.bus/bnd.bnd
copy
org.apache.aries.typedevent.bus/src/main/java/org/apache/aries/typedevent/bus/impl/{EventTask.java
=> RecordConverter.java} (65%)
create mode 100644
org.apache.aries.typedevent.bus/src/main/java/org/apache/aries/typedevent/bus/impl/TopicHistory.java
create mode 100644
org.apache.aries.typedevent.bus/src/main/java16/org/apache/aries/typedevent/bus/impl/RecordConverter.java
create mode 100644
org.apache.aries.typedevent.bus/src/test/java/org/apache/aries/typedevent/bus/osgi/RecordIntegrationTest.java