org.springframework.data.gemfire.function.annotation.FunctionId Java Examples

The following examples show how to use org.springframework.data.gemfire.function.annotation.FunctionId. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PetServiceFunctionExecutions.java    From spring-boot-data-geode with Apache License 2.0 4 votes vote down vote up
@FunctionId(("AdministerPetVaccinations"))
void administerPetVaccinations();
 
Example #2
Source File: OrderCounterCaller.java    From geode-demo-application with Apache License 2.0 4 votes vote down vote up
@FunctionId("countTransactions")
public List<Integer> countTransactions(Customer customer);
 
Example #3
Source File: ProductGroupCounterCaller.java    From geode-demo-application with Apache License 2.0 4 votes vote down vote up
@FunctionId("countByBrand")
public List<Map<String, AtomicInteger>> countByBrand();
 
Example #4
Source File: ProductGroupCounterCaller.java    From geode-demo-application with Apache License 2.0 4 votes vote down vote up
@FunctionId("countByType")
public List<Map<String, AtomicInteger>> countByType();
 
Example #5
Source File: OrderFunctionExecutions.java    From spring-data-examples with Apache License 2.0 4 votes vote down vote up
@FunctionId("sumPricesForAllProductsForOrderFnc")
List<BigDecimal> sumPricesForAllProductsForOrder(Long orderId);
 
Example #6
Source File: CustomerFunctionExecutions.java    From spring-data-examples with Apache License 2.0 4 votes vote down vote up
@FunctionId("listConsumersForEmailAddressesFnc")
List<List<Customer>> listAllCustomersForEmailAddress(String... emailAddresses);
 
Example #7
Source File: ProductFunctionExecutions.java    From spring-data-examples with Apache License 2.0 4 votes vote down vote up
@FunctionId("sumPricesForAllProductsFnc")
List<BigDecimal> sumPricesForAllProducts();
 
Example #8
Source File: FunctionExecution.java    From tutorials with MIT License 4 votes vote down vote up
@FunctionId("greeting")
public void execute(String message);