
org.ehcache.spi.service.Service Maven / Gradle / Ivy
Show all versions of ehcache-api Show documentation
/*
* Copyright Terracotta, Inc.
*
* 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.ehcache.spi.service;
/**
* A life-cycled service that supports cache functionality.
*
* Implementation of this interface must be thread-safe.
*
* Since {@code CacheManager}s can be closed and initialized again, {@code Service} implementations should support
* multiple start/stop cycles. Failure to do so will limit the init/close cycles at the {@code CacheManager} level.
*/
public interface Service {
/**
* Start this service using the provided configuration and {@link ServiceProvider}.
*
* The service provider allows a service to retrieve and use other services.
*
* A {@code Service} retrieved at this stage may not yet be started. The recommended usage pattern therefore, is to keep a
* reference to the dependent {@code Service} but use it only when specific methods are invoked on subtypes.
*
* @param serviceProvider the service provider
*/
void start(ServiceProvider serviceProvider);
/**
* Stops this service.
*/
void stop();
}