Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Automated Code Change #497

Merged
merged 1 commit into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,19 @@

package com.google.caliper.worker.handler;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import com.google.caliper.bridge.WorkerRequest;
import dagger.MapKey;
import java.lang.annotation.Retention;

/**
* Specifies the type of request a {@link RequestHandler} handles.
*
* @autor Colin Decker
*/
@MapKey
@Retention(RUNTIME)
@interface RequestTypeKey {
Class<? extends WorkerRequest> value();
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,18 @@

package com.google.caliper.worker.instrument;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

import com.google.caliper.model.InstrumentType;
import dagger.MapKey;
import java.lang.annotation.Retention;

/**
* Specifies the type of instrument to use as a key in the map of available {@link Worker workers}
* passed to {@link #provideWorker(Map)}.
*/
@MapKey
@Retention(RUNTIME)
public @interface InstrumentTypeKey {
InstrumentType value();
}
Loading