|
JMeter example source code file (DataSet.java)
The JMeter DataSet.java source code
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.jmeter.report;
import java.util.Date;
import java.util.List;
import java.util.Set;
import org.apache.jmeter.visualizers.SamplingStatCalculator;
import org.apache.jmeter.visualizers.Visualizer;
/**
*
* DataSet extends Visualizer so that it can be used with ResultCollector.
* Classes implementing the interface should create a new instance of
* ResultCollector and call setListener(Visualizer) passing itself.
* When the ResultCollector.loadExistingFile is called, it will pass
* the SampleResults.
*/
public interface DataSet extends Visualizer {
/**
* Depending on the implementation, the datasouce could be a file
* or a RDBMS. It's up to the implementing class to decide.
* @param datasource
*/
public void setDataSource(String datasource);
/**
* Return the datasource. For files, it should be the absolute path.
* For databases, it should be the datasource name created in jmeter.
*/
public String getDataSource();
/**
* In some cases, we may want to return a string that isn't the full
* datasource string or something different. For example, we may
* want to return just the filename and not the absolutePath of
* a JTL file.
*/
public String getDataSourceName();
/**
* Set the timestamp using the first result from the datasource
* @param stamp
*/
public void setStartTimestamp(long stamp);
/**
* return the timestamp in millisecond format.
*/
public long getStartTimestamp();
/**
* Set the timestamp using the last result from the datasource
* @param stamp
*/
public void setEndTimestamp(long stamp);
/**
* return the timestamp in millisecond format.
*/
public long getEndTimestamp();
/**
* Return the Date object using the start timestamp
*/
public Date getDate();
/**
* convienance method for getting the date in mmdd format
*/
public String getMonthDayDate();
/**
* convienant method for getting the date in yyyymmdd format
*/
public String getMonthDayYearDate();
/**
* Classes implementing the method should return the URL's in the
* DataSet. It is up to the class to return Strings or URL.
*/
public Set<?> getURLs();
/**
* Classes implementing the method should return instance of
* SamplingStatCalculator.
* @return the set of statistics
*/
public Set<SamplingStatCalculator> getStats();
/**
* Return the SamplingStatCalculator for a specific URL.
* @param url
*/
public SamplingStatCalculator getStatistics(String url);
/**
* Convenience method for getting all the SamplingStatCalculators for
* a given URL.
* @param urls
*/
public List<SamplingStatCalculator> getStats(@SuppressWarnings("rawtypes") // Method is broken anyway
List urls);
/**
* Classes implementing the method should load the data from
* the target location. It doesn't necessarily have to be a
* file. It could be from a database.
*/
public void loadData();
}
Other JMeter examples (source code examples)Here is a short list of links related to this JMeter DataSet.java source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.