Examples of drop()


Examples of java.nio.channels.MembershipKey.drop()

                        while (keyIt.hasNext()) {
                            MembershipKey key = keyIt.next();
                            if (networkInterface.equals(key.networkInterface())) {
                                if (source == null && key.sourceAddress() == null ||
                                    source != null && source.equals(key.sourceAddress())) {
                                    key.drop();
                                    keyIt.remove();
                                }
                            }
                        }
                        if (keys.isEmpty()) {
View Full Code Here

Examples of javaflow.components.api.Packet.drop()

        if (p == null) {
            // This should never happend because component should not be started without
            // having an actual packet in one of its input ports.
            error.createPacket("NOOO, IT WAS NULL.").send();
        } else {
            p.drop();

        }
    }
}
View Full Code Here

Examples of l2p.gameserver.model.instances.L2TerritoryFlagInstance.drop()

    {
      L2ItemInstance flag = getActiveWeaponInstance();
      if(flag != null && flag.getCustomType1() != 77) // 77 это эвентовый флаг
      {
        L2TerritoryFlagInstance flagNpc = TerritorySiege.getNpcFlagByItemId(flag.getItemId());
        flagNpc.drop(this);
        sendPacket(new SystemMessage(SystemMessage.YOU_HAVE_DROPPED_S1).addItemName(flag.getItemId()));
        String terrName = CastleManager.getInstance().getCastleByIndex(flagNpc.getBaseTerritoryId()).getName();
        TerritorySiege.announceToPlayer(new SystemMessage(SystemMessage.THE_CHARACTER_THAT_ACQUIRED_S1_WARD_HAS_BEEN_KILLED).addString(terrName), true);
      }
    }
View Full Code Here

Examples of net.sf.hibernate.tool.hbm2ddl.SchemaExport.drop()

        // new HibernateUtil();
       
        /*
         */
        SchemaExport myDatabaseSchema = new SchemaExport(HibernateUtility.getConfiguration());
        myDatabaseSchema.drop(true,true);
        myDatabaseSchema.create(true,true);

        HibernateUtility.beginTransaction();
       
        AdministratorDAO dao = new AdministratorDAO();
View Full Code Here

Examples of oracle.AQ.AQQueueTable.drop()

             // The queue does not exist.
             if (force == false) throw e;
         }

         if (queueTable != null) {
             queueTable.drop(/*stop and drop associated queues*/true);
         }
       }
}
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.AliasDescriptor.drop()

    if (ad == null)
    {
      throw StandardException.newException(SQLState.LANG_OBJECT_NOT_FOUND, ad.getAliasType(nameSpace),  aliasName);
    }
       
        ad.drop(lcc);

  }
}
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.ConglomerateDescriptor.drop()

    if (cd == null)
    {
      throw StandardException.newException(SQLState.LANG_INDEX_NOT_FOUND_DURING_EXECUTION, fullIndexName);
    }

    cd.drop(lcc, td);
  }
}
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.ConglomerateDescriptor.drop()

          /* get first conglomerate with this conglom number each time
           * and each duplicate one will be eventually all dropped
           */
          ConglomerateDescriptor cd = td.getConglomerateDescriptor
                        (indexConglomerateNumbers[i]);
          cd.drop(activation.getLanguageConnectionContext(), td);

          compressIRGs[i] = null;    // mark it
          continue;
        }
        // give an error for unique index on multiple columns including
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.ConstraintDescriptor.drop()

    ** drop all the referencing keys now.  We MUST do this AFTER
    ** dropping the referenced key because otherwise we would
    ** be repeatedly changing the reference count of the referenced
    ** key and generating unnecessary I/O.
    */
        conDesc.drop(lcc, !cascadeOnRefKey);

    if (cascadeOnRefKey)
    {
      ForeignKeyConstraintDescriptor fkcd;
      ReferencedKeyConstraintDescriptor cd;
View Full Code Here

Examples of org.apache.derby.iapi.sql.dictionary.ConstraintDescriptor.drop()

        */
        for(int inner = 0; inner < fkcdl.size(); inner++)
        {
          fkcd = (ConstraintDescriptor) fkcdl.elementAt(inner);
          dm.invalidateFor(fkcd, DependencyManager.DROP_CONSTRAINT, lcc);
          fkcd.drop(lcc, true);
          activation.addWarning(
            StandardException.newWarning(SQLState.LANG_CONSTRAINT_DROPPED,
               fkcd.getConstraintName(),
              fkcd.getTableDescriptor().getName()));
        }
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.