-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema_of_warappers.puml
39 lines (29 loc) · 1.33 KB
/
schema_of_warappers.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@startuml diagram
!theme materia
interface NodeBlockingServiceFactory {
TxService txService();
ContractService contractServiceContractService();
AddressService addressService();
NodeInfoService nodeInfoService();
PrivacyService privacyService();
BlocksService blocksService();
BlockchainEventsService blockchainEventsService();
UtilsService utilsService();
}
LoadBalancingServiceFactory o-- RateLimitingServiceFactory
AtomicAwareNodeBlockingServiceFactory o-- LoadBalancingServiceFactory
CustomNodeBlockingServiceFactory o-- AtomicAwareNodeBlockingServiceFactory
RateLimitingServiceFactory o-- ActualImplementation
LoadBalancingServiceFactory ..|> NodeBlockingServiceFactory
AtomicAwareNodeBlockingServiceFactory ..|> NodeBlockingServiceFactory
CustomNodeBlockingServiceFactory ..|> NodeBlockingServiceFactory
RateLimitingServiceFactory ..|> NodeBlockingServiceFactory
ActualImplementation ..|> NodeBlockingServiceFactory : node
note bottom of ActualImplementation: Implementation with grpc or http connection
note top of CustomNodeBlockingServiceFactory: Custom user wrapper implementation (optional)
@enduml
RateLimitingServiceFactory o-- GrpcNodeServiceFactory
FeignNodeServiceFactory <|-- NodeBlockingServiceFactory
RateLimitingServiceFactory o-- FeignNodeServiceFactory
order autoconfig uml
example custom wrapper