/* * ********************************************************************** * * Copyright (C) 2010 - 2014 * * [Component.java] * JACPFX Project (https://github.com/JacpFX/JacpFX/) * All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an "AS IS" * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language * governing permissions and limitations under the License. * * * ********************************************************************* */ package org.jacpfx.callback; import javafx.event.Event; import org.jacpfx.api.annotations.Resource; import org.jacpfx.api.annotations.component.Component; import org.jacpfx.api.annotations.component.Stateless; import org.jacpfx.api.annotations.lifecycle.PostConstruct; import org.jacpfx.api.annotations.lifecycle.PreDestroy; import org.jacpfx.api.message.Message; import org.jacpfx.config.BasicConfig; import org.jacpfx.entity.Result; import org.jacpfx.entity.Work; import org.jacpfx.rcp.component.CallbackComponent; import org.jacpfx.rcp.context.Context; import java.util.ResourceBundle; import java.util.logging.Logger; /** * Created by amo on 25.07.14. */ @Component(id = BasicConfig.STATELESS_CALLBACK, name = "statelessCallback", active = true, localeID = "en_US", resourceBundleLocation = "bundles.languageBundle" ) @Stateless public class Worker implements CallbackComponent { private Logger log = Logger.getLogger(Worker.class.getName()); @Resource private Context context; @Override public Object handle(final Message<Event, Object> message) { if (message.isMessageBodyTypeOf(Work.class)) { Work work = message.getTypedMessageBody(Work.class); double result = calculatePiFor(work.getStart(), work.getNrOfElements()); return new Result(result); } return null; } private double calculatePiFor(double start, double nrOfElements) { double acc = 0.0; for (double i = start * nrOfElements; i <= ((start + 1) * nrOfElements - 1); i++) { acc += 4.0 * (1 - (i % 2) * 2) / (2 * i + 1); } return acc; } @PreDestroy /** * The @PreDestroy annotations labels methods executed when the component is set to inactive */ public void onPreDestroyComponent() { this.log.info("run on tear down of StatelessCallback "); } @PostConstruct /** * The @PostConstruct annotation labels methods executed when the component switch from inactive to active state * @param resourceBundle */ public void onPostConstructComponent(final ResourceBundle resourceBundle) { this.log.info("run on start of StatelessCallback "); } }