Package com.github.overengineer.scope.conversation.annotations

Examples of com.github.overengineer.scope.conversation.annotations.BeginConversation.maxIdleTimeMillis()


                        if (LOG.isDebugEnabled()) {
                            LOG.debug("Adding method [{}] as a Begin Action for conversation [{}]", methodName, conversation);
                        }
                        if (method.isAnnotationPresent(BeginConversation.class)) {
                            BeginConversation config = method.getAnnotation(BeginConversation.class);
                            long maxIdle = config.maxIdleTimeMillis();
                            if (maxIdle == -1L) {
                                maxIdle = this.maxIdleTimeMillis;
                            }
                            int maxInstance = config.maxInstances();
                            if (maxInstance == 0) {
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.