Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
joram
joram
Commits
1a2de958
Commit
1a2de958
authored
Jan 13, 2021
by
Andre Freyssinet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adds an example with explicit use of JMSConnectorCheck component.
parent
7e49c039
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2159 additions
and
2103 deletions
+2159
-2103
joram/samples/src/joram/build.xml
joram/samples/src/joram/build.xml
+2114
-2103
joram/samples/src/joram/classic/JMSCheck.java
joram/samples/src/joram/classic/JMSCheck.java
+45
-0
No files found.
joram/samples/src/joram/build.xml
View file @
1a2de958
This diff is collapsed.
Click to expand it.
joram/samples/src/joram/classic/JMSCheck.java
0 → 100644
View file @
1a2de958
/*
* JORAM: Java(TM) Open Reliable Asynchronous Messaging
* Copyright (C) 2021 ScalAgent Distributed Technologies
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA.
*
* Initial developer(s): Frederic Maistre (INRIA)
* Contributor(s): ScalAgent Distributed Technologies
*/
package
classic
;
import
javax.naming.InitialContext
;
import
org.ow2.joram.tools.jmscheck.JMSConnectorCheck
;
/**
* Monitors the queue.
*/
public
class
JMSCheck
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
JMSConnectorCheck
check
=
new
JMSConnectorCheck
(
"cf"
,
new
InitialContext
(),
"anonymous"
,
"anonymous"
,
"healthCheckQueue"
,
1
);
for
(
int
i
=
0
;
i
<
10
;
i
++)
{
System
.
out
.
println
(
"check="
+
check
.
check
());
System
.
out
.
println
(
check
);
Thread
.
sleep
(
1000
);
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment