Package models

Examples of models.PostReceiveMessage


    public void onReceive(Object message) {
        if(!(message instanceof PostReceiveMessage)) {
            return;
        }

        PostReceiveMessage cap = (PostReceiveMessage)message;
        doReceive(cap);
    }
View Full Code Here


        this.user = user;
    }

    @Override
    public void onPostReceive(ReceivePack receivePack, Collection<ReceiveCommand> commands) {
        PostReceiveMessage message = new PostReceiveMessage(commands, project, user);
        Akka.system().actorOf(new Props(IssueReferredFromCommitEventActor.class)).tell(message, null);
    }
View Full Code Here

        this.user = user;
    }

    @Override
    public void onPostReceive(ReceivePack receivePack, Collection<ReceiveCommand> commands) {
        PostReceiveMessage message = new PostReceiveMessage(commands, project, user);
        Akka.system().actorOf(new Props(CommitsNotificationActor.class)).tell(message, null);
    }
View Full Code Here

TOP

Related Classes of models.PostReceiveMessage

Copyright © 2018 www.massapicom. 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.