Examples of readData()


Examples of de.fzi.herakles.strategy.impl.anytime.ResultPool.readData()

                return;
            }
            ArrayList<Object> results = new ArrayList<Object>();

            while (results.size() < reasonerNumber) {
                AnytimeResult result = pool.readData();
                if (result != null) {
                    results.add(result);
                    setData(result.getReasoner(), (Set<OWLNamedIndividual>) result.getAnswer());
                    if(logger.isInfoEnabled()){
                      logger.info(result.getReasoner() + "finished with "
View Full Code Here

Examples of forestry.arboriculture.network.PacketLeafUpdate.readData()

    try {

      switch (packetID) {
      case PacketIds.LEAF_UPDATE:
        PacketLeafUpdate packet = new PacketLeafUpdate();
        packet.readData(data);
        onLeafUpdate(packet);
        break;
      }

    } catch(Exception ex) {
View Full Code Here

Examples of forestry.core.network.PacketCoordinates.readData()

        break;

      // SERVER
      case PacketIds.PROP_REQUEST_FILTER_SET:
        PacketCoordinates packetC = new PacketCoordinates();
        packetC.readData(data);
        onRequestFilterSet(player, packetC);
        break;
      case PacketIds.PROP_SEND_FILTER_CHANGE_TYPE:
        packetU = new PacketUpdate();
        packetU.readData(data);
View Full Code Here

Examples of forestry.core.network.PacketNBT.readData()

      PacketUpdate packetU;
      switch (packetID) {
      // CLIENT
      case PacketIds.PROP_SEND_FILTER_SET:
        PacketNBT packetN = new PacketNBT();
        packetN.readData(data);
        onFilterSet(packetN);
        break;

      // SERVER
      case PacketIds.PROP_REQUEST_FILTER_SET:
View Full Code Here

Examples of forestry.core.network.PacketUpdate.readData()

        packetC.readData(data);
        onRequestFilterSet(player, packetC);
        break;
      case PacketIds.PROP_SEND_FILTER_CHANGE_TYPE:
        packetU = new PacketUpdate();
        packetU.readData(data);
        onTypeFilterChange(player, packetU);
        break;
      case PacketIds.PROP_SEND_FILTER_CHANGE_GENOME:
        packetU = new PacketUpdate();
        packetU.readData(data);
View Full Code Here

Examples of forestry.mail.network.PacketLetterInfo.readData()

      PacketUpdate packet;
      switch (packetID) {
      case PacketIds.LETTER_INFO:
        PacketLetterInfo packetT = new PacketLetterInfo();
        packetT.readData(data);
        onLetterInfo(packetT);
        break;
      case PacketIds.POBOX_INFO:
        PacketPOBoxInfo packetP = new PacketPOBoxInfo();
        packetP.readData(data);
View Full Code Here

Examples of forestry.mail.network.PacketPOBoxInfo.readData()

        packetT.readData(data);
        onLetterInfo(packetT);
        break;
      case PacketIds.POBOX_INFO:
        PacketPOBoxInfo packetP = new PacketPOBoxInfo();
        packetP.readData(data);
        onPOBoxInfo(packetP);
        break;
      case PacketIds.LETTER_RECIPIENT:
        packet = new PacketUpdate();
        packet.readData(data);
View Full Code Here

Examples of info.unipax.bina.analysis.data.csv.CsvReader.readData()

          Core.getProcessManager().showDialog();
       
          //ImportConfiguration config = reader.getConfig();
          //config.setColumnTypes(new String[]{"ignore","ids","ignore","ignore","values"});
           
          reader.readData(task);
       
          if (reader.getSeries() != null) {
            seriesRegistry.registerSeries(reader.getSeries());
 
            LinearColorMapper colorMapper = new LinearColorMapper(new Color[]{Color.BLUE,Color.WHITE,Color.RED} );
View Full Code Here

Examples of logisticspipes.network.abstractguis.GuiProvider.readData()

  @SneakyThrows(IOException.class)
  @SideOnly(Side.CLIENT)
  public static void openGui(GUIPacket packet, EntityPlayer player) {
    int guiID = packet.getGuiID();
    GuiProvider provider = guilist.get(guiID).template();
    provider.readData(new LPDataInputStream(packet.getGuiData()));
    GuiContainer screen;
    try {
      screen = (GuiContainer) provider.getClientGui(player);
    } catch(Exception e) {
      LogisticsPipes.log.error(packet.getClass().getName());
View Full Code Here

Examples of logisticspipes.network.abstractpackets.ModernPacket.readData()

    ByteBuf payload = msg.payload();
    int packetID = payload.readShort();
    final ModernPacket packet = PacketHandler.packetlist.get(packetID).template();
    packet.setDebugId(payload.readInt());
    ctx.attr(INBOUNDPACKETTRACKER).get().set(msg);
    packet.readData(new LPDataInputStream(payload.slice()));
    out.add(new InboundModernPacketWrapper(packet, MainProxy.proxy.getEntityPlayerFromNetHandler(msg.handler())));
  }

  @Override
  public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception
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.