All Downloads are FREE. Search and download functionalities are using the official Maven repository.

co.paralleluniverse.actors.BasicActor Maven / Gradle / Ivy

/*
 * Quasar: lightweight threads and actors for the JVM.
 * Copyright (c) 2013-2015, Parallel Universe Software Co. All rights reserved.
 * 
 * This program and the accompanying materials are dual-licensed under
 * either the terms of the Eclipse Public License v1.0 as published by
 * the Eclipse Foundation
 *  
 *   or (per the licensee's choosing)
 *  
 * under the terms of the GNU Lesser General Public License version 3.0
 * as published by the Free Software Foundation.
 */
package co.paralleluniverse.actors;

import co.paralleluniverse.fibers.SuspendExecution;
import co.paralleluniverse.strands.Strand;
import co.paralleluniverse.strands.Timeout;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;

/**
 * A subclass of {@link Actor} that provides selective receive capabilities.
 *
 * @author pron
 */
public abstract class BasicActor extends Actor {
    private final SelectiveReceiveHelper helper;

    /**
     * Creates a new actor.
     *
     * @param name          the actor name (may be {@code null}).
     * @param mailboxConfig the actor's mailbox settings; if {@code null}, the default config - unbounded mailbox - will be used.
     */
    public BasicActor(String name, MailboxConfig mailboxConfig) {
        super(name, mailboxConfig);
        this.helper = new SelectiveReceiveHelper<>(this);
    }

    /**
     * Creates a new, unnamed actor.
     *
     * @param mailboxConfig the actor's mailbox settings; if {@code null}, the default config - unbounded mailbox - will be used.
     */
    public BasicActor(MailboxConfig mailboxConfig) {
        this((String) null, mailboxConfig);
    }

    /**
     * Creates a new actor.
     * The default mailbox config - unbounded mailbox - will be used.
     *
     * @param name the actor name (may be {@code null}).
     */
    public BasicActor(String name) {
        this(name, null);
    }

    /**
     * Creates a new unnamed actor.
     */
    public BasicActor() {
        this((String) null, null);
    }

    public BasicActor(Strand strand, String name, MailboxConfig mailboxConfig) {
        super(strand, name, mailboxConfig);
        this.helper = new SelectiveReceiveHelper<>(this);
    }

    public BasicActor(Strand strand, MailboxConfig mailboxConfig) {
        this(strand, (String) null, mailboxConfig);
    }

    /**
     * Performs a selective receive. This method blocks until a message that is {@link MessageProcessor#process(java.lang.Object) selected} by
     * the given {@link MessageProcessor} is available in the mailbox, and returns the value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}.
     * 

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param The type of the returned value * @param proc performs the selection. * @return The non-null value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process} * @throws InterruptedException */ public final T receive(MessageProcessor proc) throws SuspendExecution, InterruptedException { return helper.receive(proc); } /** * Performs a selective receive. This method blocks (but for no longer than the given timeout) until a message that is * {@link MessageProcessor#process(java.lang.Object) selected} by the given {@link MessageProcessor} is available in the mailbox, * and returns the value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}. * If the given timeout expires, this method returns {@code null}. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param The type of the returned value * @param timeout the duration to wait for a matching message to arrive. * @param unit timeout's time unit. * @param proc performs the selection. * @return The non-null value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}, or {@code null} if the timeout expired. * @throws InterruptedException */ public final T receive(long timeout, TimeUnit unit, MessageProcessor proc) throws TimeoutException, SuspendExecution, InterruptedException { return helper.receive(timeout, unit, proc); } /** * Performs a selective receive. This method blocks (but for no longer than the given timeout) until a message that is * {@link MessageProcessor#process(java.lang.Object) selected} by the given {@link MessageProcessor} is available in the mailbox, * and returns the value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}. * If the given timeout expires, this method returns {@code null}. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param The type of the returned value * @param timeout the method will not block for longer than the amount remaining in the {@link Timeout} * @param proc performs the selection. * @return The non-null value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}, or {@code null} if the timeout expired. * @throws InterruptedException */ public final T receive(Timeout timeout, MessageProcessor proc) throws TimeoutException, SuspendExecution, InterruptedException { return helper.receive(timeout, proc); } /** * Tries to perform a selective receive. If a message {@link MessageProcessor#process(java.lang.Object) selected} by * the given {@link MessageProcessor} is immediately available in the mailbox, returns the value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}. * This method never blocks. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param The type of the returned value * @param proc performs the selection. * @return The non-null value returned by {@link MessageProcessor#process(java.lang.Object) MessageProcessor.process}, or {@code null} if no message was slected. */ public final T tryReceive(MessageProcessor proc) { return helper.tryReceive(proc); } /** * Performs a selective receive based on type. This method blocks until a message of the given type is available in the mailbox, * and returns it. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param type the type of the messages to select * @return The next message of the wanted type. * @throws InterruptedException */ public final M receive(final Class type) throws SuspendExecution, InterruptedException { return helper.receive(SelectiveReceiveHelper.ofType(type)); } /** * Performs a selective receive based on type. This method blocks (but for no longer than the given timeout) until a message of the given type * is available in the mailbox, and returns it. If the given timeout expires, this method returns {@code null}. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param timeout the duration to wait for a matching message to arrive. * @param unit timeout's time unit. * @param type the type of the messages to select * @return The next message of the wanted type, or {@code null} if the timeout expires. * @throws SuspendExecution * @throws InterruptedException */ public final M receive(long timeout, TimeUnit unit, final Class type) throws SuspendExecution, InterruptedException, TimeoutException { return helper.receive(timeout, unit, SelectiveReceiveHelper.ofType(type)); } /** * Performs a selective receive based on type. This method blocks (but for no longer than the given timeout) until a message of the given type * is available in the mailbox, and returns it. If the given timeout expires, this method returns {@code null}. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param timeout the method will not block for longer than the amount remaining in the {@link Timeout} * @param type the type of the messages to select * @return The next message of the wanted type, or {@code null} if the timeout expires. * @throws SuspendExecution * @throws InterruptedException */ public final M receive(Timeout timeout, final Class type) throws SuspendExecution, InterruptedException, TimeoutException { return helper.receive(timeout, SelectiveReceiveHelper.ofType(type)); } /** * Tries to performs a selective receive based on type. If a message of the given type is immediately found in the mailbox, it is returned. * Otherwise this method returns {@code null}. * This method never blocks. *

* Messages that are not selected, are temporarily skipped. They will remain in the mailbox until another call to receive (selective or * non-selective) retrieves them. * * @param The type of the returned value * @param type the type of the messages to select * @return The next message of the wanted type if immediately found; {@code null} otherwise. */ public final M tryReceive(final Class type) { return helper.tryReceive(SelectiveReceiveHelper.ofType(type)); } @Override public final String getName() { return (String) super.getName(); } @Override protected Object readResolve() throws java.io.ObjectStreamException { Object x = super.readResolve(); assert x == this; helper.setActor(this); return this; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy