8000 Release 2.3.1 · open-tool/ultron · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

2.3.1

Compare
Choose a tag to compare
@alex-tiurin alex-tiurin released this 02 Dec 08:13
· 56 commits to master since this release

What's Changed

There are 2 new general methods:

withName(name: String)
withMetaInfo(meta: Any)

By default name is used in exceptions messages.

These data also could be used in listeners and result analyzers:

 class MetaListener: UltronLifecycleListener(){
     override fun afterFailure(operationResult: OperationResult<Operation>) {
         val name = operationResult.operation.elementInfo.name
         val metaInfo = operationResult.operation.elementInfo.meta
     }
 }

Full Changelog: 2.3.0...2.3.1

0