szetszwo commented on PR #9996:
URL: https://github.com/apache/ozone/pull/9996#issuecomment-4148726472
Output for `DeletedBlockLogStateManager`:
```java
// Code generated for DeletedBlockLogStateManager. Do not modify.
@SuppressWarnings("unchecked")
@Override
public Object invokeLocal(String methodName, Object[] params) throws
Exception {
switch (methodName) {
case "onFlush": {
impl.onFlush();
return null;
}
case "addTransactionsToDB": {
final ArrayList arg0 = params.length > 0 ? (ArrayList) params[0] :
null;
final DeletedBlocksTransactionSummary arg1 = params.length > 1 ?
(DeletedBlocksTransactionSummary) params[1] : null;
impl.addTransactionsToDB(arg0, arg1);
return null;
}
case "removeTransactionsFromDB": {
final ArrayList arg0 = params.length > 0 ? (ArrayList) params[0] :
null;
final DeletedBlocksTransactionSummary arg1 = params.length > 1 ?
(DeletedBlocksTransactionSummary) params[1] : null;
impl.removeTransactionsFromDB(arg0, arg1);
return null;
}
case "getReadOnlyIterator": {
return impl.getReadOnlyIterator();
}
case "reinitialize": {
final Table arg0 = params.length > 0 ? (Table) params[0] : null;
final Table arg1 = params.length > 1 ? (Table) params[1] : null;
impl.reinitialize(arg0, arg1);
return null;
}
}
throw new IllegalArgumentException("Method not found: " + methodName);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]