-
Notifications
You must be signed in to change notification settings - Fork 13
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
no support for filters in listener #49
Comments
Hi @solidhtp , Awesome, a PR would be welcomed. |
solidhtp
added a commit
to solidhtp/nest-amqp
that referenced
this issue
Oct 6, 2021
@raschan PR created. Please merge. |
raschan
added a commit
that referenced
this issue
Mar 29, 2022
raschan
added a commit
that referenced
this issue
Mar 29, 2022
raschan
added a commit
that referenced
this issue
Mar 29, 2022
Hi @solidhtp Sorry for the delay, life happened.... I've updated the package with support for the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
ActiveMQ supports filters by
JMS selector expressions
orXPath
.rhea
supports message filtering as described here.@Listen
accepts onlystring
type in source.In order to support filters
source
should be type ofstring | Source
Source as described in this line. I tried it locally with typeSource
and filters were working fine.I can create a PR which simply changes the source type from
string
tostring | Source
.The text was updated successfully, but these errors were encountered: