mirror of https://github.com/longtai-cn/hippo4j
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
630 B
25 lines
630 B
import request from '@/utils/request'
|
|
|
|
export function list(data) {
|
|
return request({
|
|
url: '/hippo4j/v1/cs/adapter/thread-pool/query?mark=' + data.mark + '&tenant=' + data.tenantId + '&item=' + data.itemId + '&threadPoolKey=' + data.threadPoolKey,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function listKey(data) {
|
|
return request({
|
|
url: '/hippo4j/v1/cs/adapter/thread-pool/query/key?mark=' + data.mark + '&tenant=' + data.tenantId + '&item=' + data.itemId,
|
|
method: 'get'
|
|
})
|
|
}
|
|
|
|
export function updatePool(data) {
|
|
return request({
|
|
url: '/hippo4j/v1/cs/adapter/thread-pool/update',
|
|
method: 'post',
|
|
data
|
|
})
|
|
}
|
|
|