Package ptolemy.actor

Examples of ptolemy.actor.IOPort.broadcast()


                                    _debug(getFullName() + " port: "
                                            + destination.getName()
                                            + " broadcast Clear!");
                                }
                            } else {
                                destination.broadcast(token);

                                if (_debugging) {
                                    _debug(getFullName() + " port: "
                                            + destination.getName()
                                            + " broadcast token: " + token);
View Full Code Here


                                _debug(getFullName() + " port: "
                                        + destination.getName() + " channel: "
                                        + chanelValue + ", token: " + token);
                            }
                        } else {
                            destination.broadcast(token);

                            if (isInput) {
                                // If the destination is both input and output,
                                // also send the tokens to local receivers.
                                for (int i = 0; i < localReceivers.length; i++) {
View Full Code Here

                if (initialValueParameter != null) {
                    // Since we delay the transfer of outputs, we have to
                    // make the receivers of the port call 'update'
                    // instead of 'put' only.
                    port.broadcast(initialValueParameter.getToken());

                    Receiver[][] channelArray = port.getRemoteReceivers();

                    for (int i = 0; i < channelArray.length; i++) {
                        Receiver[] receiverArray = channelArray[i];
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.