Examples of event()


Examples of ch.ralscha.extdirectspring.annotation.ExtDirectMethod.event()

      break;
    case FORM_POST:
      this.action = new Action(method.getName(), 0, true);
      break;
    case POLL:
      this.pollingProvider = new PollingProvider(beanName, method.getName(), extDirectMethodAnnotation.event());
      break;
    case SSE:
      this.sseMethod = method.getName();
      break;
    default:
View Full Code Here

Examples of com.godshawk.lib.annotations.reflection.event.EventListener.event()

                filter(m -> m.isAnnotationPresent(EventListener.class)).sequential().forEach(methodsWithAnnotation::add);

        Set<Class<? extends EventBase>> eventClasses = new HashSet<>();
        for (Method method : methodsWithAnnotation) {
            EventListener annotation = method.getDeclaredAnnotation(EventListener.class);
            Class<? extends EventBase> eventClass = annotation.event();
            if (!eventClasses.contains(eventClass)) {
                eventClasses.add(eventClass);
            }
        }
View Full Code Here

Examples of com.saasovation.common.notification.Notification.event()

        Notification notification =
            NotificationSerializer
                .instance()
                .deserialize(aTextMessage, Notification.class);

        ProductDiscussionRequestTimedOut event = notification.event();

        if (event.hasFullyTimedOut()) {
            this.productApplicationService().timeOutProductDiscussionRequest(
                    new TimeOutProductDiscussionRequestCommand(
                            event.tenantId(),
View Full Code Here

Examples of itc.Stamp.event()

        out.event(gen.gera());
        saco.push(out);

        Stamp outb = (Stamp) bag.popInd(ind);
//        System.out.println("ANTES:"+outb.toString());
        outb.event();
//        System.out.println("DPS:"+outb.toString());
        bag.push(outb);
      }

      CStamp tmp = new CStamp();
View Full Code Here

Examples of org.apache.catalina.Valve.event()

   public void event(Request request, Response response, HttpEvent event) throws IOException, ServletException
   {
      if (delegationEnabled)
      {
         Valve delegate = getOrLoadDelegate(delegateValveClassName);
         delegate.event(request, response, event);
      }
      else
      {
         next.event(request, response, event);
      }
View Full Code Here

Examples of org.apache.james.mailbox.MailboxListener.event()

                for (int i = 0; i < sz; i++) {
                    MailboxListener l = mListeners.get(i);
                    if (l.isClosed()) {
                        closedListener.add(l);
                    } else {
                        l.event(event);
                    }
                }
               
                if (event instanceof MailboxDeletion) {
                    // remove listeners if the mailbox was deleted
View Full Code Here

Examples of org.apache.james.mailbox.MailboxListener.event()

                for (int i = 0; i < sz; i++) {
                    MailboxListener l = globalListeners.get(i);
                    if (l.isClosed()) {
                        closedListener.add(l);
                    } else {
                        l.event(event);
                    }
                }
               
             
                if (closedListener.isEmpty() == false) {
View Full Code Here

Examples of org.apache.james.mailbox.MailboxListener.event()

    public void event(Event event) {
        List<MailboxListener> closed = new ArrayList<MailboxListener>();
        for (Iterator<MailboxListener> iter = listeners.iterator(); iter.hasNext();) {
            MailboxListener mailboxListener = iter.next();
            if (mailboxListener.isClosed() == false) {
                mailboxListener.event(event);
            } else {
                closed.add(mailboxListener);
            }
        }
        for (int i = 0; i < closed.size(); i++)
View Full Code Here

Examples of org.apache.openejb.util.PerformanceTimer.event()

    public static void _loadFromClasspath(final FileUtils base, final List<URL> jarList, final ClassLoader classLoader) {

        final PerformanceTimer timer = new PerformanceTimer();

        timer.event("create filters");
        final Options options = SystemInstance.get().getOptions();
        final String include = "";
        final String exclude = "";
        final PatternFilter classpathInclude = new PatternFilter(options.get(DeploymentFilterable.CLASSPATH_INCLUDE, ".*"));
        final PatternFilter classpathExclude = new PatternFilter(options.get(DeploymentFilterable.CLASSPATH_EXCLUDE, ""));
View Full Code Here

Examples of org.apache.openejb.util.PerformanceTimer.event()

        final PatternFilter packageExclude = new PatternFilter(options.get(DeploymentFilterable.PACKAGE_EXCLUDE, ""));

        final IncludeExcludeFilter packageFilter;
        if (classpathInclude.getPattern().pattern().equals(".*") && packageInclude.getPattern().pattern().equals(".*")) {

            timer.event("callers");

            final Set<String> callers = callers();

            timer.event("parse packages");

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.