Examples of newMsg()


Examples of com.ensifera.animosity.craftirc.CraftIRC.newMsg()

        if ((plugin == null) || !plugin.isEnabled() || !(plugin instanceof CraftIRC)) {
            this.getServer().getPluginManager().disablePlugin((this));
        } else {
            final CraftIRC craftirc = (CraftIRC) plugin;
            craftirc.registerEndPoint(this.exampletag, this);
            final RelayedMessage rm = craftirc.newMsg(this, null, "generic");
            rm.setField("message", "I'm aliiive!");
            rm.post();
        }
    }
View Full Code Here

Examples of de.sciss.jcollider.Synth.newMsg()

            ));
            off += ct.chanMaps[ i ].length;
          }

          if( ct.numFiles > 0 ) {
            f.write( synthPhasor.newMsg( nrtGrpInput, new String[] {
              "i_aInBf",           "rate",   "i_aPhBs"          }, new float[] {
              bufsDisk[ 0 ].getBufNum(), realRate, busPh.getIndex() }));
          }
         
        } else {
View Full Code Here

Examples of de.sciss.jcollider.Synth.newMsg()

    bndl.addPacket( grpGain.freeAllMsg() );
    bndl.addPacket( grpLimiter.freeAllMsg() );
    for( int ch = 0; ch < oCfg.numChannels; ch++ ) {
      if( oCfg.mapping[ ch ] < server.getOptions().getNumOutputBusChannels() ) {
        synth  = Synth.basicNew( "eisk-limiter", server );
        bndl.addPacket( synth.newMsg( grpLimiter, new String[] { "i_aBus" }, new float[] { oCfg.mapping[ ch ]}));
        nw.register( synth );
        synth  = Synth.basicNew( "eisk-gain", server );
        bndl.addPacket( synth.newMsg( grpGain, new String[] { "i_aBus", "volume" }, new float[] { oCfg.mapping[ ch ], volume }));
        nw.register( synth );
      }
View Full Code Here

Examples of de.sciss.jcollider.Synth.newMsg()

      if( oCfg.mapping[ ch ] < server.getOptions().getNumOutputBusChannels() ) {
        synth  = Synth.basicNew( "eisk-limiter", server );
        bndl.addPacket( synth.newMsg( grpLimiter, new String[] { "i_aBus" }, new float[] { oCfg.mapping[ ch ]}));
        nw.register( synth );
        synth  = Synth.basicNew( "eisk-gain", server );
        bndl.addPacket( synth.newMsg( grpGain, new String[] { "i_aBus", "volume" }, new float[] { oCfg.mapping[ ch ], volume }));
        nw.register( synth );
      }
    }
   
    try {
View Full Code Here

Examples of org.kapott.hbci.manager.HBCIHandler.newMsg()

                            String          jobname=tok.nextToken().trim();
                           
                            if (jobname.equals("--")) {
                                // wenn jobname="--", dann neue hbci-message erzeugen
                                customerId=(tok.hasMoreTokens()?tok.nextToken().trim():null);
                                handler.newMsg(customerId);
                            } else {
                                // ansonsten handelt es sich um einen "richtigen" job
                                String resultMode;
                               
                                if (jobname.startsWith("_")) {
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.