summaryrefslogtreecommitdiff
path: root/java/demo/Ice/async/WorkQueue.java
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2015-03-18 12:58:16 -0230
committerMatthew Newhook <matthew@zeroc.com>2015-03-18 12:58:16 -0230
commit9b7668c7c92cf9cb311fe444cdddb489cd2a219d (patch)
tree5016567c58c81f5654e9d01935e199c6bf4761d2 /java/demo/Ice/async/WorkQueue.java
parentVS add-in & build updates: (diff)
downloadice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.bz2
ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.tar.xz
ice-9b7668c7c92cf9cb311fe444cdddb489cd2a219d.zip
Removed demos.
Moved demoscript to distribution.
Diffstat (limited to 'java/demo/Ice/async/WorkQueue.java')
-rw-r--r--java/demo/Ice/async/WorkQueue.java114
1 files changed, 0 insertions, 114 deletions
diff --git a/java/demo/Ice/async/WorkQueue.java b/java/demo/Ice/async/WorkQueue.java
deleted file mode 100644
index 712c0eab29d..00000000000
--- a/java/demo/Ice/async/WorkQueue.java
+++ /dev/null
@@ -1,114 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-import Demo.*;
-
-public class WorkQueue extends Thread
-{
- class CallbackEntry
- {
- AMD_Hello_sayHello cb;
- int delay;
- }
-
- @Override
- public synchronized void
- run()
- {
- while(!_done)
- {
- if(_callbacks.size() == 0)
- {
- try
- {
- wait();
- }
- catch(java.lang.InterruptedException ex)
- {
- }
- }
-
- if(_callbacks.size() != 0)
- {
- //
- // Get next work item.
- //
- CallbackEntry entry = _callbacks.getFirst();
-
- //
- // Wait for the amount of time indicated in delay to
- // emulate a process that takes a significant period of
- // time to complete.
- //
- try
- {
- wait(entry.delay);
- }
- catch(java.lang.InterruptedException ex)
- {
- }
-
- if(!_done)
- {
- //
- // Print greeting and send response.
- //
- _callbacks.removeFirst();
- System.err.println("Belated Hello World!");
- entry.cb.ice_response();
- }
- }
- }
-
- //
- // Throw exception for any outstanding requests.
- //
- for(CallbackEntry p : _callbacks)
- {
- p.cb.ice_exception(new RequestCanceledException());
- }
- }
-
- public synchronized void
- add(AMD_Hello_sayHello cb, int delay)
- {
- if(!_done)
- {
- //
- // Add the work item.
- //
- CallbackEntry entry = new CallbackEntry();
- entry.cb = cb;
- entry.delay = delay;
-
- if(_callbacks.size() == 0)
- {
- notify();
- }
- _callbacks.add(entry);
- }
- else
- {
- //
- // Destroyed, throw exception.
- //
- cb.ice_exception(new RequestCanceledException());
- }
- }
-
- public synchronized void
- _destroy() // Thread.destroy is deprecated.
- {
- _done = true;
- notify();
- }
-
- private java.util.LinkedList<CallbackEntry> _callbacks = new java.util.LinkedList<CallbackEntry>();
- private boolean _done = false;
-}