se.laz.casual.event.ServiceCallEventStore Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of casual-event-api Show documentation
Show all versions of casual-event-api Show documentation
Casual JCA - Resource Adapter for Casual middleware.
The newest version!
/*
* Copyright (c) 2024, The casual project. All rights reserved.
*
* This software is licensed under the MIT license, https://opensource.org/licenses/MIT
*/
package se.laz.casual.event;
import se.laz.casual.spi.Prioritisable;
public interface ServiceCallEventStore extends Prioritisable
{
/**
* Non blocking operation
* @param event - The service call event
*/
void put(ServiceCallEvent event);
/**
* Blocking operation
* @return A service call event
*/
ServiceCallEvent take();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy