Renaming ..ToEdgeService to ..ToEdge
This commit is contained in:
parent
c94f5f1d32
commit
4a77cc27cb
@ -844,7 +844,7 @@ public abstract class BaseController {
|
||||
try {
|
||||
if (!relation.getFrom().getEntityType().equals(EntityType.EDGE) &&
|
||||
!relation.getTo().getEntityType().equals(EntityType.EDGE)) {
|
||||
sendNotificationMsgToEdgeService(tenantId, null, null, json.writeValueAsString(relation), EdgeEventType.RELATION, action);
|
||||
sendNotificationMsgToEdge(tenantId, null, null, json.writeValueAsString(relation), EdgeEventType.RELATION, action);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
log.warn("Failed to push relation to core: {}", relation, e);
|
||||
@ -858,7 +858,7 @@ public abstract class BaseController {
|
||||
protected void sendDeleteNotificationMsg(TenantId tenantId, EntityId entityId, List<EdgeId> edgeIds, String body) {
|
||||
if (edgeIds != null && !edgeIds.isEmpty()) {
|
||||
for (EdgeId edgeId : edgeIds) {
|
||||
sendNotificationMsgToEdgeService(tenantId, edgeId, entityId, body, null, EdgeEventActionType.DELETED);
|
||||
sendNotificationMsgToEdge(tenantId, edgeId, entityId, body, null, EdgeEventActionType.DELETED);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -873,22 +873,22 @@ public abstract class BaseController {
|
||||
|
||||
protected void sendEntityAssignToCustomerNotificationMsg(TenantId tenantId, EntityId entityId, CustomerId customerId, EdgeEventActionType action) {
|
||||
try {
|
||||
sendNotificationMsgToEdgeService(tenantId, null, entityId, json.writeValueAsString(customerId), null, action);
|
||||
sendNotificationMsgToEdge(tenantId, null, entityId, json.writeValueAsString(customerId), null, action);
|
||||
} catch (Exception e) {
|
||||
log.warn("Failed to push assign/unassign to/from customer to core: {}", customerId, e);
|
||||
}
|
||||
}
|
||||
|
||||
protected void sendEntityNotificationMsg(TenantId tenantId, EntityId entityId, EdgeEventActionType action) {
|
||||
sendNotificationMsgToEdgeService(tenantId, null, entityId, null, null, action);
|
||||
sendNotificationMsgToEdge(tenantId, null, entityId, null, null, action);
|
||||
}
|
||||
|
||||
protected void sendEntityAssignToEdgeNotificationMsg(TenantId tenantId, EdgeId edgeId, EntityId entityId, EdgeEventActionType action) {
|
||||
sendNotificationMsgToEdgeService(tenantId, edgeId, entityId, null, null, action);
|
||||
sendNotificationMsgToEdge(tenantId, edgeId, entityId, null, null, action);
|
||||
}
|
||||
|
||||
private void sendNotificationMsgToEdgeService(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action) {
|
||||
tbClusterService.sendNotificationMsgToEdgeService(tenantId, edgeId, entityId, body, type, action);
|
||||
private void sendNotificationMsgToEdge(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action) {
|
||||
tbClusterService.sendNotificationMsgToEdge(tenantId, edgeId, entityId, body, type, action);
|
||||
}
|
||||
|
||||
protected List<EdgeId> findRelatedEdgeIds(TenantId tenantId, EntityId entityId) {
|
||||
|
||||
@ -226,7 +226,7 @@ public class DefaultTbNotificationEntityService implements TbNotificationEntityS
|
||||
try {
|
||||
if (!relation.getFrom().getEntityType().equals(EntityType.EDGE) &&
|
||||
!relation.getTo().getEntityType().equals(EntityType.EDGE)) {
|
||||
sendNotificationMsgToEdgeService(tenantId, null, null, json.writeValueAsString(relation),
|
||||
sendNotificationMsgToEdge(tenantId, null, null, json.writeValueAsString(relation),
|
||||
EdgeEventType.RELATION, edgeTypeByActionType(actionType));
|
||||
}
|
||||
} catch (Exception e1) {
|
||||
@ -250,12 +250,12 @@ public class DefaultTbNotificationEntityService implements TbNotificationEntityS
|
||||
}
|
||||
|
||||
private void sendEntityNotificationMsg(TenantId tenantId, EntityId entityId, EdgeEventActionType action) {
|
||||
sendNotificationMsgToEdgeService(tenantId, null, entityId, null, null, action);
|
||||
sendNotificationMsgToEdge(tenantId, null, entityId, null, null, action);
|
||||
}
|
||||
|
||||
private void sendEntityAssignToCustomerNotificationMsg(TenantId tenantId, EntityId entityId, CustomerId customerId, EdgeEventActionType action) {
|
||||
try {
|
||||
sendNotificationMsgToEdgeService(tenantId, null, entityId, json.writeValueAsString(customerId), null, action);
|
||||
sendNotificationMsgToEdge(tenantId, null, entityId, json.writeValueAsString(customerId), null, action);
|
||||
} catch (Exception e) {
|
||||
log.warn("Failed to push assign/unassign to/from customer to core: {}", customerId, e);
|
||||
}
|
||||
@ -281,17 +281,17 @@ public class DefaultTbNotificationEntityService implements TbNotificationEntityS
|
||||
private void sendDeleteNotificationMsg(TenantId tenantId, EntityId entityId, List<EdgeId> edgeIds, String body) {
|
||||
if (edgeIds != null && !edgeIds.isEmpty()) {
|
||||
for (EdgeId edgeId : edgeIds) {
|
||||
sendNotificationMsgToEdgeService(tenantId, edgeId, entityId, body, null, EdgeEventActionType.DELETED);
|
||||
sendNotificationMsgToEdge(tenantId, edgeId, entityId, body, null, EdgeEventActionType.DELETED);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void sendEntityAssignToEdgeNotificationMsg(TenantId tenantId, EdgeId edgeId, EntityId entityId, EdgeEventActionType action) {
|
||||
sendNotificationMsgToEdgeService(tenantId, edgeId, entityId, null, null, action);
|
||||
sendNotificationMsgToEdge(tenantId, edgeId, entityId, null, null, action);
|
||||
}
|
||||
|
||||
private void sendNotificationMsgToEdgeService(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action) {
|
||||
tbClusterService.sendNotificationMsgToEdgeService(tenantId, edgeId, entityId, body, type, action);
|
||||
private void sendNotificationMsgToEdge(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action) {
|
||||
tbClusterService.sendNotificationMsgToEdge(tenantId, edgeId, entityId, body, type, action);
|
||||
}
|
||||
|
||||
private void pushAssignedFromNotification(Tenant currentTenant, TenantId newTenantId, Device assignedDevice) {
|
||||
|
||||
@ -415,12 +415,12 @@ public class DefaultTbClusterService implements TbClusterService {
|
||||
sendDeviceStateServiceEvent(device.getTenantId(), device.getId(), created, !created, false);
|
||||
otaPackageStateService.update(device, old);
|
||||
if (!created && notifyEdge) {
|
||||
sendNotificationMsgToEdgeService(device.getTenantId(), null, device.getId(), null, null, EdgeEventActionType.UPDATED);
|
||||
sendNotificationMsgToEdge(device.getTenantId(), null, device.getId(), null, null, EdgeEventActionType.UPDATED);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void sendNotificationMsgToEdgeService(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action) {
|
||||
public void sendNotificationMsgToEdge(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action) {
|
||||
if (!edgesEnabled) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -85,5 +85,5 @@ public interface TbClusterService {
|
||||
|
||||
void onEdgeEventUpdate(TenantId tenantId, EdgeId edgeId);
|
||||
|
||||
void sendNotificationMsgToEdgeService(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action);
|
||||
void sendNotificationMsgToEdge(TenantId tenantId, EdgeId edgeId, EntityId entityId, String body, EdgeEventType type, EdgeEventActionType action);
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user