Package org.elasticsearch.action.admin.indices.refresh

Examples of org.elasticsearch.action.admin.indices.refresh.RefreshRequest.indices()


    List<RefreshRequest> requests = refreshAction.call();
    assertThat(requests).hasSize(1);

    RefreshRequest request = requests.get(0);
    assertThat(request.indices()).containsOnly(TEST_INDEX.getIndexName());
    assertThat(request.force()).isFalse();
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.