Examples of reset()


Examples of org.neo4j.smack.pipeline.core.event.CorePipelineEvent.reset()

            ChannelBuffer content, Channel channel, boolean keepAlive)
    {
        long sequenceNo = ringBuffer.next();
        CorePipelineEvent event = ringBuffer.get(sequenceNo);

        event.reset(connectionId, verb, path, content, channel, keepAlive);

        ringBuffer.publish(sequenceNo);
    }

    @Override
View Full Code Here

Examples of org.neo4j.smack.pipeline.database.event.DatabaseWork.reset()

        long sequenceId = ringBuffer.next();
        DatabaseWork work = ringBuffer.get(sequenceId);

        if(!event.hasFailed()) {
            work.reset(
                    event.getEndpoint(),
                    event.getChannel(),
                    event.getIsPersistentConnection(),
                    event.getPath(),
                    event.getTransactionId(),
View Full Code Here

Examples of org.netbeans.modules.php.fuel.ui.FuelPhpStatusLineElement.reset()

            FuelPhpModuleImpl.this.version = new FuelPhpVersion(version);
            Collection<? extends StatusLineElementProvider> elements = Lookup.getDefault().lookupAll(StatusLineElementProvider.class);
            for (StatusLineElementProvider element : elements) {
                if (element instanceof FuelPhpStatusLineElement) {
                    FuelPhpStatusLineElement statusbar = (FuelPhpStatusLineElement) element;
                    statusbar.reset();
                    break;
                }
            }
        }
View Full Code Here

Examples of org.netbeans.web.action.beans.SourcejarMappingBean.reset()

            mapp.setComponent(smb.getComponent().toLowerCase());
            mapp.setSubcomponent(smb.getSubcomponent());
            em.getTransaction().begin();
            em.persist(mapp);
            em.getTransaction().commit();
            smb.reset();
        }
        Matcher.getDefault().reload();
        return mapping.findForward(SUCCESS);
    }
}
View Full Code Here

Examples of org.nutz.ioc.Ioc.reset()

    assertEquals(1, f.getCreateTime());
    assertEquals(2, f.getFetchTime());
    assertEquals(0, f.getDeposeTime());

    ioc.reset();
    assertEquals(1, f.getCreateTime());
    assertEquals(2, f.getFetchTime());
    assertEquals(1, f.getDeposeTime());
  }
View Full Code Here

Examples of org.odbms.ObjectSet.reset()

            {
                count++;
               oSet.next();  
            }
            assertEquals(limit, count);
            oSet.reset();
            count = 0;
            while (oSet.hasNext())
            {
                count++;
               oSet.next();  
View Full Code Here

Examples of org.olat.commons.coordinate.cluster.jms.SimpleProbe.reset()

        } else if (command.equals("jmsDeliveryMax")) {
          result.append(roundedValueOf(probe.getMax()));
        } else if (command.equals("jmsDeliveryCnt")) {
          result.append(roundedValueOf(probe.getNum()));
        } else if (command.equals("jmsDeliveryReset")) {
          probe.reset();
          result.append("0");
        }
        result.append("\n0\n0\n");
      }
      result.append(instanceId);
View Full Code Here

Examples of org.olat.core.gui.components.form.flexible.FormItem.reset()

            break;
          case FormItemDependencyRuleImpl.HIDE_ERROR:
            element.showError(false);
            break;
          case FormItemDependencyRuleImpl.RESET:
            element.reset();
            break;
          default:
            throw new AssertException("unsupported action in dependency rule");
        }
      }
View Full Code Here

Examples of org.omg.CORBA.portable.InputStream.reset()

                userException = (UserException)readMethod.invoke(
                    null, readArguments );
            }
            finally {
                try {
                    ueInputStream.reset();
                }
                catch( IOException e ) {
                    throw wrapper.markAndResetFailed( e ) ;
                }
            }
View Full Code Here

Examples of org.openhab.binding.dmx.internal.action.BaseAction.reset()

    logger.trace("Switching to next action on channel {}", getChannelId());
    // push action to the back of the action list
    BaseAction action = actions.get(0);
    actions.remove(0);
    action.reset();
    actions.add(action);
  }

  /**
   * Replace the current list of channel actions with the provided one.
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.