Batch Apex
Batch Apex 사용하기 Database.Batchable 인터페이스를 상속받아 Batch Apex 사용 Batch Apex를 모니터링/멈추려면 Setup → Apex Jobs Database.Batchable 인터페이스 implement하기 Database.Batchable 인터페이스는 3개의 메소드가 필수로 포함되어야 함 : 1) start 메소드 2) execute 메소드 3) finish 메소드 1) start 메소드 : public (Database.QueryLocator) | Iterable) start(Database.BatchableContext bc) {} 인터페이스 메소드 execute에 전달할 레코드/객체를 수집하기 위해 batch Apex job의 시작 부분에서 start 메소드..
Apex
2022. 3. 8. 17:47