Skip to content

Inform recovery listeners when recovery has started #132

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

Closed
wants to merge 30 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
20e66d4
Merge branch 'stable'
dumbbell Dec 24, 2015
224bd4b
Merge branch 'stable'
dumbbell Dec 28, 2015
4a1178e
Merge branch 'stable'
michaelklishin Dec 28, 2015
2e59552
Merge branch 'stable'
michaelklishin Dec 30, 2015
a09565d
Merge branch 'stable'
michaelklishin Jan 1, 2016
fc94c0f
Migrate build system from Ant to Maven
Dec 21, 2015
d32c250
Merge pull request #122 from rabbitmq/rabbitmq-java-client-37
dumbbell Jan 14, 2016
a4e879a
3.6.0 is out
michaelklishin Jan 14, 2016
1023b37
Use File.separator instead of FileSystems.getDefault().getSeparator()
dumbbell Jan 15, 2016
8087e91
Makefile: Fix path to `build.properties`
dumbbell Jan 18, 2016
c40e4db
Merge branch 'stable'
michaelklishin Jan 25, 2016
029c212
RpcClient: Make reply-to queue name configurable
Jan 25, 2016
6d4e5bc
Correct comment
michaelklishin Jan 26, 2016
01fce68
Explicitly mention Direct Reply-to
michaelklishin Jan 26, 2016
56afacb
Compile
michaelklishin Jan 26, 2016
2849b1e
Merge branch 'theomega-RpcClient-configurable-replyTo-Queue'
michaelklishin Jan 26, 2016
6bf9a74
Merge branch 'stable'
michaelklishin Jan 26, 2016
f7dee0a
Overload ConnectionFactory.newConnection methods to use lists as well…
Jan 25, 2016
0b6229e
Cosmetics
michaelklishin Jan 26, 2016
5a2a5fd
Cosmetics
michaelklishin Jan 26, 2016
5edfb82
Cosmetics, remove unused code
michaelklishin Jan 26, 2016
a975c3e
Specifically invoke the Address[] version
michaelklishin Jan 26, 2016
7569573
Cosmetics
michaelklishin Jan 26, 2016
b1967e5
Merge branch 'stable'
michaelklishin Jan 27, 2016
b2db10a
Merge branch 'stable'
michaelklishin Feb 3, 2016
484414e
Added Closable-inteface to Connection-class for future try-with-resou…
Khazrak Feb 6, 2016
bba45a8
Merge branch 'Khazrak-rabbitmq-java-client-131'
michaelklishin Feb 6, 2016
53567ce
Enhance RpcClient: Provide access to msg metadata
zfarrell Feb 19, 2016
d1aea76
Merge pull request #134 from zfarrell/RpcClient-add-access-to-message
michaelklishin Mar 8, 2016
7bb9443
PR 132: inform recovery listeners when recovery has started in case a…
Mar 9, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,8 @@ ebin/
out/
tmp/
junit*.properties
/target/
/.DS_Store
/.classpath
/.project
/.settings
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WEB_URL=http://www.rabbitmq.com/
NEXUS_STAGE_URL=http://oss.sonatype.org/service/local/staging/deploy/maven2
MAVEN_NEXUS_VERSION=1.7

AMQP_CODEGEN_DIR=$(shell fgrep sibling.codegen.dir build.properties | sed -e 's:sibling\.codegen\.dir=::')
AMQP_CODEGEN_DIR=$(shell fgrep sibling.codegen.dir src/test/resources/build.properties | sed -e 's:sibling\.codegen\.dir=::')

[email protected]:/home/maven/rabbitmq-java-client/

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ Maven artifacts are [released to Maven Central](http://search.maven.org/#search%
<dependency>
<groupId>com.rabbitmq</groupId>
<artifactId>amqp-client</artifactId>
<version>3.5.5</version>
<version>3.6.0</version>
</dependency>
```

### Gradle

``` groovy
compile 'com.rabbitmq:amqp-client:3.5.5'
compile 'com.rabbitmq:amqp-client:3.6.0'
```


Expand Down
18 changes: 15 additions & 3 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<project name="RabbitMQ Java client" default="build"
xmlns:bundlor="antlib:com.springsource.bundlor.ant">

<property file="build.properties"/>
<property file="config.properties"/>
<property file="${basedir}/src/test/resources/build.properties"/>
<property file="${basedir}/src/test/resources/config.properties"/>
<property environment="env"/>

<path id="javac.classpath">
Expand Down Expand Up @@ -81,7 +81,7 @@

<target name="build" depends="amqp-generate" description="Build the client library.">
<mkdir dir="${javac.out}"/>
<copy file="src/com/rabbitmq/client/impl/ClientVersion.java.in"
<copy file="${maven.src.home}/com/rabbitmq/client/impl/ClientVersion.java.in"
tofile="${src.generated}/com/rabbitmq/client/impl/ClientVersion.java">
<filterset>
<filter token="VERSION" value="${impl.version}"/>
Expand Down Expand Up @@ -341,6 +341,9 @@
<jvmarg value="-Dmake.bin=${make.bin}"/>
<jvmarg value="-Drabbitmqctl.bin=${rabbitmqctl.bin}"/>
<jvmarg value="-Dsibling.rabbitmq_test.dir=${sibling.rabbitmq_test.dir}"/>
<jvmarg value="-Dbroker.hostname=${broker.hostname}"/>
<jvmarg value="-Dbroker.port=${broker.port}"/>
<jvmarg value="-Dbroker.sslport=${broker.sslport}"/>

<jvmarg value="-Dkeystore.path=${CLIENT_KEYSTORE}"/>
<jvmarg value="-Dkeystore.empty.path=${CLIENT_KEYSTORE_EMPTY}"/>
Expand All @@ -365,6 +368,9 @@
<jvmarg value="-Dmake.bin=${make.bin}"/>
<jvmarg value="-Drabbitmqctl.bin=${rabbitmqctl.bin}"/>
<jvmarg value="-Dsibling.rabbitmq_test.dir=${sibling.rabbitmq_test.dir}"/>
<jvmarg value="-Dbroker.hostname=${broker.hostname}"/>
<jvmarg value="-Dbroker.port=${broker.port}"/>
<jvmarg value="-Dbroker.sslport=${broker.sslport}"/>

<formatter type="plain"/>
<formatter type="xml"/>
Expand All @@ -381,6 +387,9 @@
<jvmarg value="-Dmake.bin=${make.bin}"/>
<jvmarg value="-Drabbitmqctl.bin=${rabbitmqctl.bin}"/>
<jvmarg value="-Dsibling.rabbitmq_test.dir=${sibling.rabbitmq_test.dir}"/>
<jvmarg value="-Dbroker.hostname=${broker.hostname}"/>
<jvmarg value="-Dbroker.port=${broker.port}"/>
<jvmarg value="-Dbroker.sslport=${broker.sslport}"/>

<formatter type="plain"/>
<formatter type="xml"/>
Expand All @@ -399,6 +408,9 @@
<jvmarg value="-Dmake.bin=${make.bin}"/>
<jvmarg value="-Drabbitmqctl.bin=${rabbitmqctl.bin}"/>
<jvmarg value="-Dsibling.rabbitmq_test.dir=${sibling.rabbitmq_test.dir}"/>
<jvmarg value="-Dbroker.hostname=${broker.hostname}"/>
<jvmarg value="-Dbroker.port=${broker.port}"/>
<jvmarg value="-Dbroker.sslport=${broker.sslport}"/>

<formatter type="plain"/>
<formatter type="xml"/>
Expand Down
Loading