This is an automated email from the ASF dual-hosted git repository.
timothyjward pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/aries-typedevent.git
from 71a2404 Merge pull request #23 from
gg-dim/ariesTypedEvents_service_cap
add f56ca7c Backport support for Records as events from 1.1 dev branch
new 3b1c438 Merge pull request #25 from apache/backport/records
The 1 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 | 27 ++
.../aries/typedevent/bus/impl/EventConverter.java | 10 +-
.../impl/{EventTask.java => RecordConverter.java} | 30 ++-
.../typedevent/bus/impl/TypedEventBusImpl.java | 2 +-
.../aries/typedevent/bus/impl/RecordConverter.java | 102 ++++++++
.../typedevent/bus/osgi/RecordIntegrationTest.java | 272 +++++++++++++++++++++
pom.xml | 2 +-
8 files changed, 426 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} (64%)
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