当满足预定义的条件时,智能合约将自动执行。智能合约的操作可以用三个主要术语来简要描述:
互联性:每个智能合约通常都有一组受限的功能。可以设置多个智能合约以相互连接,并且可以形成更复杂的安排,称为去中心化应用程序(dapps)系统。
protected SingleThreadEventExecutor(EventExecutorGroup parent, Executor executor,
boolean addTaskWakesUp, Queue<Runnable> taskQueue,
RejectedExecutionHandler rejectedHandler) {
super(parent);
this.addTaskWakesUp = addTaskWakesUp;
this.maxPendingTasks = DEFAULT_MAX_PENDING_EXECUTOR_TASKS;
this.executor = ThreadExecutorMap.apply(executor, this);
this.taskQueue = ObjectUtil.checkNotNull(taskQueue, "taskQueue");
this.rejectedExecutionHandler = ObjectUtil.checkNotNull(rejectedHandler, "rejectedHandler");
}
对象:这些是与智能合约及其主体交互的签署者,它们由智能合约根据预订义或新提交的条款进行修改。
环境:智能合约依赖于底层加密环境。这确保了它们可以安全地运行,并且它们所作用的数据是不可变的并且通常是透明的。


雷达卡


京公网安备 11010802022788号







