Reference articles on history, science, culture and more
Encyclopedia

Active object

Software design pattern

The active object design pattern decouples method execution from method invocation for objects that each reside in their own thread of control. The goal is to introduce concurrency, by using asynchronous method invocation and a scheduler for handling requests.

The pattern consists of six elements:

  • A proxy, which provides an interface towards clients with publicly accessible methods.
  • An interface which defines the method request on an active object.
  • A list of pending requests from clients.
  • A scheduler, which decides which request to execute next.
  • The implementation of the active object method.
  • A callback or variable for the client to receive the result.

01Example

Java

An example of active object pattern in Java.

Firstly we can see a standard class that provides two methods that set a double to be a certain value. This class does NOT conform to the active object pattern.

package org.wikipedia.examples; public class MyClass { private double val = 0.0; public void doSomething() { val = 1.0; } public void doSomethingElse() { val = 2.0; } }

The class is dangerous in a multithreading scenario because both methods can be called simultaneously, so the value of val (which is not atomic, it's updated in multiple steps) could be undefined, a classic race condition. You can, of course, use synchronization to solve this problem, which in this trivial case is easy. But once the class becomes realistically complex, synchronization can become very difficult.

To rewrite this class as an active object, you could do the following:

package org.wikipedia.examples; import java.util.concurrent.BlockingQueue; import java.util.concurrent.LinkedBlockingQueue; public class MyActiveObject { private double val = 0.0; private BlockingQueue<Runnable> dispatchQueue = new LinkedBlockingQueue<Runnable>(); public MyActiveObject() { Thread t = new Thread(new Runnable() { @Override public void run() { try { while (true) { dispatchQueue.take().run(); } } catch (InterruptedException e) { // okay, just terminate the dispatcher } } }); t.start(); } public void doSomething() throws InterruptedException { dispatchQueue.put(new Runnable() { @Override public void run() { val = 1.0; } }); } public void doSomethingElse() throws InterruptedException { dispatchQueue.put(new Runnable() { @Override public void run() { val = 2.0; } }); } }

Another example of active object pattern using Java 8 features.

package org.wikipedia.examples; import java.util.concurrent.ForkJoinPool; public class MyClass { private double val; // container for tasks // decides which request to execute next // asyncMode=true means our worker thread processes its local task queue in the FIFO order // only single thread may modify internal state private final ForkJoinPool fj = new ForkJoinPool(1, ForkJoinPool.defaultForkJoinWorkerThreadFactory, null, true); // implementation of active object method public void doSomething() throws InterruptedException { fj.execute(() -> { val = 1.0; }); } // implementation of active object method public void doSomethingElse() throws InterruptedException { fj.execute(() -> { val = 2.0; }); } }
Watch videos about Active objectExplainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Active object, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.