Java Code Examples for org.apache.rocketmq.common.filter.ExpressionType#SQL92

The following examples show how to use org.apache.rocketmq.common.filter.ExpressionType#SQL92 . 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: SqlFilter.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
@Override
public String ofType() {
    return ExpressionType.SQL92;
}
 
Example 2
Source File: SqlFilter.java    From rocketmq-4.3.0 with Apache License 2.0 4 votes vote down vote up
@Override
public String ofType() {
    return ExpressionType.SQL92;
}
 
Example 3
Source File: SqlFilter.java    From rocketmq-read with Apache License 2.0 4 votes vote down vote up
/**
 * 类型是SQL92
 * @return ;
 */
@Override
public String ofType() {
    return ExpressionType.SQL92;
}
 
Example 4
Source File: SqlFilter.java    From DDMQ with Apache License 2.0 4 votes vote down vote up
@Override
public String ofType() {
    return ExpressionType.SQL92;
}
 
Example 5
Source File: SqlFilter.java    From rocketmq-all-4.1.0-incubating with Apache License 2.0 4 votes vote down vote up
@Override
public String ofType() {
    return ExpressionType.SQL92;
}
 
Example 6
Source File: SqlFilter.java    From rocketmq with Apache License 2.0 4 votes vote down vote up
@Override
public String ofType() {
    return ExpressionType.SQL92;
}
 
Example 7
Source File: MessageSelector.java    From DDMQ with Apache License 2.0 2 votes vote down vote up
/**
 * Use SLQ92 to select message.
 *
 * @param sql if null or empty, will be treated as select all message.
 */
public static MessageSelector bySql(String sql) {
    return new MessageSelector(ExpressionType.SQL92, sql);
}
 
Example 8
Source File: MessageSelector.java    From rocketmq-4.3.0 with Apache License 2.0 2 votes vote down vote up
/**
 * Use SLQ92 to select message.
 *
 * @param sql if null or empty, will be treated as select all message.
 */
public static MessageSelector bySql(String sql) {
    return new MessageSelector(ExpressionType.SQL92, sql);
}
 
Example 9
Source File: MessageSelector.java    From rocketmq-read with Apache License 2.0 2 votes vote down vote up
/**
 * Use SLQ92 to select message.
 *
 * @param sql if null or empty, will be treated as select all message.
 */
public static MessageSelector bySql(String sql) {
    return new MessageSelector(ExpressionType.SQL92, sql);
}
 
Example 10
Source File: MessageSelector.java    From DDMQ with Apache License 2.0 2 votes vote down vote up
/**
 * Use SLQ92 to select message.
 *
 * @param sql if null or empty, will be treated as select all message.
 */
public static MessageSelector bySql(String sql) {
    return new MessageSelector(ExpressionType.SQL92, sql);
}
 
Example 11
Source File: MessageSelector.java    From rocketmq-all-4.1.0-incubating with Apache License 2.0 2 votes vote down vote up
/**
 * Use SLQ92 to select message.
 *
 * @param sql if null or empty, will be treated as select all message.
 * @return
 */
public static MessageSelector bySql(String sql) {
    return new MessageSelector(ExpressionType.SQL92, sql);
}
 
Example 12
Source File: MessageSelector.java    From rocketmq with Apache License 2.0 2 votes vote down vote up
/**
 * Use SLQ92 to select message.
 *
 * @param sql if null or empty, will be treated as select all message.
 */
public static MessageSelector bySql(String sql) {
    return new MessageSelector(ExpressionType.SQL92, sql);
}