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

IGNITE-23398 Class SpiQuery is marked as DEPRECATED. #11624

Merged
merged 3 commits into from
Oct 29, 2024
Merged
Changes from 1 commit
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 @@ -24,10 +24,13 @@
import org.apache.ignite.spi.indexing.IndexingSpi;

/**
* This class is DEPRECATED and will be removed in the future
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, use @deprecated doclet - you can find examples in other parts of code.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does such comment as
// @deprecated is not used anymore
explains it enough or there are some recommendations for what user should use instead of SpiQuery class?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@deprecated Use {@link ScanQuery}, {@link SqlFieldQuery}, {@IndexQuery} instead.

*
* Query to be used by {@link IndexingSpi} implementations.
*
* @see IgniteCache#query(Query)
*/
@Deprecated
public final class SpiQuery<K, V> extends Query<Cache.Entry<K, V>> {
/** */
private static final long serialVersionUID = 0L;
Expand Down