tachyon.thrift
Class MasterService.Client
java.lang.Object
org.apache.thrift.TServiceClient
tachyon.thrift.MasterService.Client
- All Implemented Interfaces:
- MasterService.Iface
- Enclosing class:
- MasterService
public static class MasterService.Client
- extends org.apache.thrift.TServiceClient
- implements MasterService.Iface
Fields inherited from class org.apache.thrift.TServiceClient |
iprot_, oprot_, seqid_ |
Method Summary |
boolean |
addCheckpoint(long workerId,
int fileId,
long fileSizeBytes,
String checkpointPath)
|
List<ClientFileInfo> |
cmd_ls(String path)
|
boolean |
recv_addCheckpoint()
|
List<ClientFileInfo> |
recv_cmd_ls()
|
int |
recv_user_createFile()
|
int |
recv_user_createRawTable()
|
void |
recv_user_deleteById()
|
void |
recv_user_deleteByPath()
|
ClientFileInfo |
recv_user_getClientFileInfoById()
|
ClientFileInfo |
recv_user_getClientFileInfoByPath()
|
ClientRawTableInfo |
recv_user_getClientRawTableInfoById()
|
ClientRawTableInfo |
recv_user_getClientRawTableInfoByPath()
|
int |
recv_user_getFileId()
|
List<NetAddress> |
recv_user_getFileLocationsById()
|
List<NetAddress> |
recv_user_getFileLocationsByPath()
|
int |
recv_user_getNumberOfFiles()
|
int |
recv_user_getRawTableId()
|
String |
recv_user_getUnderfsAddress()
|
long |
recv_user_getUserId()
|
NetAddress |
recv_user_getWorker()
|
List<Integer> |
recv_user_listFiles()
|
List<String> |
recv_user_ls()
|
int |
recv_user_mkdir()
|
void |
recv_user_outOfMemoryForPinFile()
|
void |
recv_user_renameFile()
|
void |
recv_user_unpinFile()
|
void |
recv_user_updateRawTableMetadata()
|
void |
recv_worker_cacheFile()
|
Set<Integer> |
recv_worker_getPinIdList()
|
Command |
recv_worker_heartbeat()
|
long |
recv_worker_register()
|
void |
send_addCheckpoint(long workerId,
int fileId,
long fileSizeBytes,
String checkpointPath)
|
void |
send_cmd_ls(String path)
|
void |
send_user_createFile(String filePath)
|
void |
send_user_createRawTable(String path,
int columns,
ByteBuffer metadata)
|
void |
send_user_deleteById(int fileId)
|
void |
send_user_deleteByPath(String path)
|
void |
send_user_getClientFileInfoById(int fileId)
|
void |
send_user_getClientFileInfoByPath(String filePath)
|
void |
send_user_getClientRawTableInfoById(int tableId)
|
void |
send_user_getClientRawTableInfoByPath(String tablePath)
|
void |
send_user_getFileId(String filePath)
|
void |
send_user_getFileLocationsById(int fileId)
|
void |
send_user_getFileLocationsByPath(String filePath)
|
void |
send_user_getNumberOfFiles(String path)
|
void |
send_user_getRawTableId(String path)
|
void |
send_user_getUnderfsAddress()
|
void |
send_user_getUserId()
|
void |
send_user_getWorker(boolean random,
String host)
|
void |
send_user_listFiles(String path,
boolean recursive)
|
void |
send_user_ls(String path,
boolean recursive)
|
void |
send_user_mkdir(String path)
|
void |
send_user_outOfMemoryForPinFile(int fileId)
|
void |
send_user_renameFile(String srcFilePath,
String dstFilePath)
|
void |
send_user_unpinFile(int fileId)
|
void |
send_user_updateRawTableMetadata(int tableId,
ByteBuffer metadata)
|
void |
send_worker_cacheFile(long workerId,
long workerUsedBytes,
int fileId,
long fileSizeBytes)
|
void |
send_worker_getPinIdList()
|
void |
send_worker_heartbeat(long workerId,
long usedBytes,
List<Integer> removedFiles)
|
void |
send_worker_register(NetAddress workerNetAddress,
long totalBytes,
long usedBytes,
List<Integer> currentFiles)
|
int |
user_createFile(String filePath)
|
int |
user_createRawTable(String path,
int columns,
ByteBuffer metadata)
|
void |
user_deleteById(int fileId)
|
void |
user_deleteByPath(String path)
|
ClientFileInfo |
user_getClientFileInfoById(int fileId)
|
ClientFileInfo |
user_getClientFileInfoByPath(String filePath)
|
ClientRawTableInfo |
user_getClientRawTableInfoById(int tableId)
|
ClientRawTableInfo |
user_getClientRawTableInfoByPath(String tablePath)
|
int |
user_getFileId(String filePath)
|
List<NetAddress> |
user_getFileLocationsById(int fileId)
|
List<NetAddress> |
user_getFileLocationsByPath(String filePath)
|
int |
user_getNumberOfFiles(String path)
|
int |
user_getRawTableId(String path)
|
String |
user_getUnderfsAddress()
|
long |
user_getUserId()
|
NetAddress |
user_getWorker(boolean random,
String host)
|
List<Integer> |
user_listFiles(String path,
boolean recursive)
|
List<String> |
user_ls(String path,
boolean recursive)
|
int |
user_mkdir(String path)
|
void |
user_outOfMemoryForPinFile(int fileId)
|
void |
user_renameFile(String srcFilePath,
String dstFilePath)
|
void |
user_unpinFile(int fileId)
|
void |
user_updateRawTableMetadata(int tableId,
ByteBuffer metadata)
|
void |
worker_cacheFile(long workerId,
long workerUsedBytes,
int fileId,
long fileSizeBytes)
|
Set<Integer> |
worker_getPinIdList()
|
Command |
worker_heartbeat(long workerId,
long usedBytes,
List<Integer> removedFiles)
|
long |
worker_register(NetAddress workerNetAddress,
long totalBytes,
long usedBytes,
List<Integer> currentFiles)
|
Methods inherited from class org.apache.thrift.TServiceClient |
getInputProtocol, getOutputProtocol, receiveBase, sendBase |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
MasterService.Client
public MasterService.Client(org.apache.thrift.protocol.TProtocol prot)
MasterService.Client
public MasterService.Client(org.apache.thrift.protocol.TProtocol iprot,
org.apache.thrift.protocol.TProtocol oprot)
addCheckpoint
public boolean addCheckpoint(long workerId,
int fileId,
long fileSizeBytes,
String checkpointPath)
throws FileDoesNotExistException,
SuspectedFileSizeException,
org.apache.thrift.TException
- Specified by:
addCheckpoint
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
SuspectedFileSizeException
org.apache.thrift.TException
send_addCheckpoint
public void send_addCheckpoint(long workerId,
int fileId,
long fileSizeBytes,
String checkpointPath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_addCheckpoint
public boolean recv_addCheckpoint()
throws FileDoesNotExistException,
SuspectedFileSizeException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
SuspectedFileSizeException
org.apache.thrift.TException
worker_register
public long worker_register(NetAddress workerNetAddress,
long totalBytes,
long usedBytes,
List<Integer> currentFiles)
throws org.apache.thrift.TException
- Specified by:
worker_register
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_worker_register
public void send_worker_register(NetAddress workerNetAddress,
long totalBytes,
long usedBytes,
List<Integer> currentFiles)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_worker_register
public long recv_worker_register()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
worker_heartbeat
public Command worker_heartbeat(long workerId,
long usedBytes,
List<Integer> removedFiles)
throws org.apache.thrift.TException
- Specified by:
worker_heartbeat
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_worker_heartbeat
public void send_worker_heartbeat(long workerId,
long usedBytes,
List<Integer> removedFiles)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_worker_heartbeat
public Command recv_worker_heartbeat()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
worker_cacheFile
public void worker_cacheFile(long workerId,
long workerUsedBytes,
int fileId,
long fileSizeBytes)
throws FileDoesNotExistException,
SuspectedFileSizeException,
org.apache.thrift.TException
- Specified by:
worker_cacheFile
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
SuspectedFileSizeException
org.apache.thrift.TException
send_worker_cacheFile
public void send_worker_cacheFile(long workerId,
long workerUsedBytes,
int fileId,
long fileSizeBytes)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_worker_cacheFile
public void recv_worker_cacheFile()
throws FileDoesNotExistException,
SuspectedFileSizeException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
SuspectedFileSizeException
org.apache.thrift.TException
worker_getPinIdList
public Set<Integer> worker_getPinIdList()
throws org.apache.thrift.TException
- Specified by:
worker_getPinIdList
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_worker_getPinIdList
public void send_worker_getPinIdList()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_worker_getPinIdList
public Set<Integer> recv_worker_getPinIdList()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
user_createFile
public int user_createFile(String filePath)
throws FileAlreadyExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_createFile
in interface MasterService.Iface
- Throws:
FileAlreadyExistException
InvalidPathException
org.apache.thrift.TException
send_user_createFile
public void send_user_createFile(String filePath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_createFile
public int recv_user_createFile()
throws FileAlreadyExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileAlreadyExistException
InvalidPathException
org.apache.thrift.TException
user_getFileId
public int user_getFileId(String filePath)
throws InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_getFileId
in interface MasterService.Iface
- Throws:
InvalidPathException
org.apache.thrift.TException
send_user_getFileId
public void send_user_getFileId(String filePath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getFileId
public int recv_user_getFileId()
throws InvalidPathException,
org.apache.thrift.TException
- Throws:
InvalidPathException
org.apache.thrift.TException
user_getUserId
public long user_getUserId()
throws org.apache.thrift.TException
- Specified by:
user_getUserId
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_user_getUserId
public void send_user_getUserId()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getUserId
public long recv_user_getUserId()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
user_getWorker
public NetAddress user_getWorker(boolean random,
String host)
throws NoLocalWorkerException,
org.apache.thrift.TException
- Specified by:
user_getWorker
in interface MasterService.Iface
- Throws:
NoLocalWorkerException
org.apache.thrift.TException
send_user_getWorker
public void send_user_getWorker(boolean random,
String host)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getWorker
public NetAddress recv_user_getWorker()
throws NoLocalWorkerException,
org.apache.thrift.TException
- Throws:
NoLocalWorkerException
org.apache.thrift.TException
user_getClientFileInfoById
public ClientFileInfo user_getClientFileInfoById(int fileId)
throws FileDoesNotExistException,
org.apache.thrift.TException
- Specified by:
user_getClientFileInfoById
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
org.apache.thrift.TException
send_user_getClientFileInfoById
public void send_user_getClientFileInfoById(int fileId)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getClientFileInfoById
public ClientFileInfo recv_user_getClientFileInfoById()
throws FileDoesNotExistException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
org.apache.thrift.TException
user_getClientFileInfoByPath
public ClientFileInfo user_getClientFileInfoByPath(String filePath)
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_getClientFileInfoByPath
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_getClientFileInfoByPath
public void send_user_getClientFileInfoByPath(String filePath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getClientFileInfoByPath
public ClientFileInfo recv_user_getClientFileInfoByPath()
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_getFileLocationsById
public List<NetAddress> user_getFileLocationsById(int fileId)
throws FileDoesNotExistException,
org.apache.thrift.TException
- Specified by:
user_getFileLocationsById
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
org.apache.thrift.TException
send_user_getFileLocationsById
public void send_user_getFileLocationsById(int fileId)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getFileLocationsById
public List<NetAddress> recv_user_getFileLocationsById()
throws FileDoesNotExistException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
org.apache.thrift.TException
user_getFileLocationsByPath
public List<NetAddress> user_getFileLocationsByPath(String filePath)
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_getFileLocationsByPath
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_getFileLocationsByPath
public void send_user_getFileLocationsByPath(String filePath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getFileLocationsByPath
public List<NetAddress> recv_user_getFileLocationsByPath()
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_listFiles
public List<Integer> user_listFiles(String path,
boolean recursive)
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_listFiles
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_listFiles
public void send_user_listFiles(String path,
boolean recursive)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_listFiles
public List<Integer> recv_user_listFiles()
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_ls
public List<String> user_ls(String path,
boolean recursive)
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_ls
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_ls
public void send_user_ls(String path,
boolean recursive)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_ls
public List<String> recv_user_ls()
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_deleteById
public void user_deleteById(int fileId)
throws org.apache.thrift.TException
- Specified by:
user_deleteById
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_user_deleteById
public void send_user_deleteById(int fileId)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_deleteById
public void recv_user_deleteById()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
user_deleteByPath
public void user_deleteByPath(String path)
throws InvalidPathException,
FileDoesNotExistException,
org.apache.thrift.TException
- Specified by:
user_deleteByPath
in interface MasterService.Iface
- Throws:
InvalidPathException
FileDoesNotExistException
org.apache.thrift.TException
send_user_deleteByPath
public void send_user_deleteByPath(String path)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_deleteByPath
public void recv_user_deleteByPath()
throws InvalidPathException,
FileDoesNotExistException,
org.apache.thrift.TException
- Throws:
InvalidPathException
FileDoesNotExistException
org.apache.thrift.TException
user_outOfMemoryForPinFile
public void user_outOfMemoryForPinFile(int fileId)
throws org.apache.thrift.TException
- Specified by:
user_outOfMemoryForPinFile
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_user_outOfMemoryForPinFile
public void send_user_outOfMemoryForPinFile(int fileId)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_outOfMemoryForPinFile
public void recv_user_outOfMemoryForPinFile()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
user_renameFile
public void user_renameFile(String srcFilePath,
String dstFilePath)
throws FileAlreadyExistException,
FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_renameFile
in interface MasterService.Iface
- Throws:
FileAlreadyExistException
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_renameFile
public void send_user_renameFile(String srcFilePath,
String dstFilePath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_renameFile
public void recv_user_renameFile()
throws FileAlreadyExistException,
FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileAlreadyExistException
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_unpinFile
public void user_unpinFile(int fileId)
throws FileDoesNotExistException,
org.apache.thrift.TException
- Specified by:
user_unpinFile
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
org.apache.thrift.TException
send_user_unpinFile
public void send_user_unpinFile(int fileId)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_unpinFile
public void recv_user_unpinFile()
throws FileDoesNotExistException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
org.apache.thrift.TException
user_mkdir
public int user_mkdir(String path)
throws FileAlreadyExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_mkdir
in interface MasterService.Iface
- Throws:
FileAlreadyExistException
InvalidPathException
org.apache.thrift.TException
send_user_mkdir
public void send_user_mkdir(String path)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_mkdir
public int recv_user_mkdir()
throws FileAlreadyExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileAlreadyExistException
InvalidPathException
org.apache.thrift.TException
user_createRawTable
public int user_createRawTable(String path,
int columns,
ByteBuffer metadata)
throws FileAlreadyExistException,
InvalidPathException,
TableColumnException,
org.apache.thrift.TException
- Specified by:
user_createRawTable
in interface MasterService.Iface
- Throws:
FileAlreadyExistException
InvalidPathException
TableColumnException
org.apache.thrift.TException
send_user_createRawTable
public void send_user_createRawTable(String path,
int columns,
ByteBuffer metadata)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_createRawTable
public int recv_user_createRawTable()
throws FileAlreadyExistException,
InvalidPathException,
TableColumnException,
org.apache.thrift.TException
- Throws:
FileAlreadyExistException
InvalidPathException
TableColumnException
org.apache.thrift.TException
user_getRawTableId
public int user_getRawTableId(String path)
throws InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_getRawTableId
in interface MasterService.Iface
- Throws:
InvalidPathException
org.apache.thrift.TException
send_user_getRawTableId
public void send_user_getRawTableId(String path)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getRawTableId
public int recv_user_getRawTableId()
throws InvalidPathException,
org.apache.thrift.TException
- Throws:
InvalidPathException
org.apache.thrift.TException
user_getClientRawTableInfoById
public ClientRawTableInfo user_getClientRawTableInfoById(int tableId)
throws TableDoesNotExistException,
org.apache.thrift.TException
- Specified by:
user_getClientRawTableInfoById
in interface MasterService.Iface
- Throws:
TableDoesNotExistException
org.apache.thrift.TException
send_user_getClientRawTableInfoById
public void send_user_getClientRawTableInfoById(int tableId)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getClientRawTableInfoById
public ClientRawTableInfo recv_user_getClientRawTableInfoById()
throws TableDoesNotExistException,
org.apache.thrift.TException
- Throws:
TableDoesNotExistException
org.apache.thrift.TException
user_getClientRawTableInfoByPath
public ClientRawTableInfo user_getClientRawTableInfoByPath(String tablePath)
throws TableDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_getClientRawTableInfoByPath
in interface MasterService.Iface
- Throws:
TableDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_getClientRawTableInfoByPath
public void send_user_getClientRawTableInfoByPath(String tablePath)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getClientRawTableInfoByPath
public ClientRawTableInfo recv_user_getClientRawTableInfoByPath()
throws TableDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
TableDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_updateRawTableMetadata
public void user_updateRawTableMetadata(int tableId,
ByteBuffer metadata)
throws TableDoesNotExistException,
org.apache.thrift.TException
- Specified by:
user_updateRawTableMetadata
in interface MasterService.Iface
- Throws:
TableDoesNotExistException
org.apache.thrift.TException
send_user_updateRawTableMetadata
public void send_user_updateRawTableMetadata(int tableId,
ByteBuffer metadata)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_updateRawTableMetadata
public void recv_user_updateRawTableMetadata()
throws TableDoesNotExistException,
org.apache.thrift.TException
- Throws:
TableDoesNotExistException
org.apache.thrift.TException
user_getNumberOfFiles
public int user_getNumberOfFiles(String path)
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Specified by:
user_getNumberOfFiles
in interface MasterService.Iface
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
send_user_getNumberOfFiles
public void send_user_getNumberOfFiles(String path)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getNumberOfFiles
public int recv_user_getNumberOfFiles()
throws FileDoesNotExistException,
InvalidPathException,
org.apache.thrift.TException
- Throws:
FileDoesNotExistException
InvalidPathException
org.apache.thrift.TException
user_getUnderfsAddress
public String user_getUnderfsAddress()
throws org.apache.thrift.TException
- Specified by:
user_getUnderfsAddress
in interface MasterService.Iface
- Throws:
org.apache.thrift.TException
send_user_getUnderfsAddress
public void send_user_getUnderfsAddress()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_user_getUnderfsAddress
public String recv_user_getUnderfsAddress()
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
cmd_ls
public List<ClientFileInfo> cmd_ls(String path)
throws InvalidPathException,
FileDoesNotExistException,
org.apache.thrift.TException
- Specified by:
cmd_ls
in interface MasterService.Iface
- Throws:
InvalidPathException
FileDoesNotExistException
org.apache.thrift.TException
send_cmd_ls
public void send_cmd_ls(String path)
throws org.apache.thrift.TException
- Throws:
org.apache.thrift.TException
recv_cmd_ls
public List<ClientFileInfo> recv_cmd_ls()
throws InvalidPathException,
FileDoesNotExistException,
org.apache.thrift.TException
- Throws:
InvalidPathException
FileDoesNotExistException
org.apache.thrift.TException
Copyright © 2013. All Rights Reserved.