```python
from typing import Callable, Any, Dict, List

class JobQueue:
    def __init__(self):
        self.jobs: Dict[str, Dict[str, Any]] = {}

    def add_job(self, job_id: str, data: Any) -> None:
        self.jobs[job_id] = {
            "data": data,
            "retry_count": 0,
            "backoff_delays": [1, 2, 4],
            "tracked_backoffs": []
        }

    def process_job(self, job_id: str, processor: Callable) -> bool:
        if job_id not in self.jobs:
            return False

        job = self.jobs[job_id]
        max_retries = len(job["backoff_delays"])

        for attempt in range(max_retries + 1):
            try:
                processor(job["data"])
                return True
            except Exception:
                if attempt < max_retries:
                    job["retry_count"] += 1
                    job["tracked_backoffs"].append(job["backoff_delays"][attempt])

        return False
```